rust: kernel: remove redundant imports
[linux-block.git] / rust / kernel / sync / lock.rs
index 5b5c8efe427ae2fc215a9ac312282cc133fb07e2..f6c34ca4d819f81c9259515562d5ae8a0c4ffc57 100644 (file)
@@ -6,7 +6,7 @@
 //! spinlocks, raw spinlocks) to be provided with minimal effort.
 
 use super::LockClassKey;
-use crate::{bindings, init::PinInit, pin_init, str::CStr, types::Opaque, types::ScopeGuard};
+use crate::{init::PinInit, pin_init, str::CStr, types::Opaque, types::ScopeGuard};
 use core::{cell::UnsafeCell, marker::PhantomData, marker::PhantomPinned};
 use macros::pin_data;