summary refs log tree commit diff
path: root/devices/src/ioapic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'devices/src/ioapic.rs')
-rw-r--r--devices/src/ioapic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/devices/src/ioapic.rs b/devices/src/ioapic.rs
index a4bb98e..a022c85 100644
--- a/devices/src/ioapic.rs
+++ b/devices/src/ioapic.rs
@@ -5,8 +5,8 @@
 // Implementation of an intel 82093AA Input/Output Advanced Programmable Interrupt Controller
 // See https://pdos.csail.mit.edu/6.828/2016/readings/ia32/ioapic.pdf for a specification.
 
+use crate::BusDevice;
 use bit_field::*;
-use BusDevice;
 
 // TODO(mutexlox): once https://crrev.com/c/1519686 has landed, refactor these bitfields to use
 // better types where applicable.