aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-05-19 13:00:01 +0200
committerDario Nieuwenhuis <[email protected]>2021-05-19 13:00:01 +0200
commita8902b0592ccb60566a426a00a3bf5e8f5762382 (patch)
tree4a32a341f9591a733d2903ce2946b82b7cf3db65
parent16f8db4fcd0f5c0b362865b36141428227ba55cc (diff)
Fix build with executor-agnostic
-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)]