aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy/src/util/waker_agnostic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy/src/util/waker_agnostic.rs b/embassy/src/util/waker_agnostic.rs
index 53f1ec135..f43cc8c33 100644
--- a/embassy/src/util/waker_agnostic.rs
+++ b/embassy/src/util/waker_agnostic.rs
@@ -2,7 +2,7 @@ use core::cell::Cell;
2use core::mem; 2use core::mem;
3use core::task::Waker; 3use core::task::Waker;
4 4
5use cortex_m::interrupt::Mutex; 5use crate::util::CriticalSectionMutex as Mutex;
6 6
7/// Utility struct to register and wake a waker. 7/// Utility struct to register and wake a waker.
8#[derive(Debug)] 8#[derive(Debug)]