diff --git a/rtic-sync/src/bit_channel.rs b/rtic-sync/src/bit_channel.rs index b502e94afc..d14b132efe 100644 --- a/rtic-sync/src/bit_channel.rs +++ b/rtic-sync/src/bit_channel.rs @@ -1,9 +1,8 @@ //! A channel operating on bitflags. -use core::{future::poll_fn, task::Poll}; - use atomic::AtomicType; use bitflags::{Bits, Flags}; +use core::{future::poll_fn, task::Poll}; use portable_atomic::Ordering; use rtic_common::waker_registration::CriticalSectionWakerRegistration as CSWaker;