summary refs log tree commit diff
path: root/devices/src/usb/host_backend/context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'devices/src/usb/host_backend/context.rs')
-rw-r--r--devices/src/usb/host_backend/context.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/devices/src/usb/host_backend/context.rs b/devices/src/usb/host_backend/context.rs
index dc35a9f..5d8b689 100644
--- a/devices/src/usb/host_backend/context.rs
+++ b/devices/src/usb/host_backend/context.rs
@@ -3,14 +3,14 @@
 // found in the LICENSE file.
 
 use super::error::*;
+use crate::usb::usb_util::hotplug::UsbHotplugHandler;
+use crate::usb::usb_util::libusb_context::{LibUsbContext, LibUsbPollfdChangeHandler};
+use crate::usb::usb_util::libusb_device::LibUsbDevice;
+use crate::utils::{EventHandler, EventLoop};
 use std::os::raw::c_short;
 use std::os::unix::io::RawFd;
 use std::sync::{Arc, Weak};
 use sys_util::WatchingEvents;
-use usb::usb_util::hotplug::UsbHotplugHandler;
-use usb::usb_util::libusb_context::{LibUsbContext, LibUsbPollfdChangeHandler};
-use usb::usb_util::libusb_device::LibUsbDevice;
-use utils::{EventHandler, EventLoop};
 use vm_control::MaybeOwnedFd;
 
 /// Context wraps libusb context with libusb event handling.