Merge pull request #4 from chebykinn/fix-ahcid

Fix missing use statement
This commit is contained in:
Jeremy Soller
2017-03-22 08:38:06 -06:00
committed by GitHub
+1 -1
View File
@@ -1,6 +1,6 @@
use std::mem::size_of;
use std::ops::DerefMut;
use std::{ptr, u32};
use std::{ptr, u32, thread};
use syscall::io::{Dma, Io, Mmio};
use syscall::error::{Error, Result, EIO};