aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-mcxa/src/rtc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-mcxa/src/rtc.rs b/embassy-mcxa/src/rtc.rs
index 41dcc98df..c5474d34a 100644
--- a/embassy-mcxa/src/rtc.rs
+++ b/embassy-mcxa/src/rtc.rs
@@ -203,7 +203,7 @@ pub fn get_default_config() -> RtcConfig {
203} 203}
204/// Minimal RTC handle for a specific instance I (store the zero-sized token like embassy) 204/// Minimal RTC handle for a specific instance I (store the zero-sized token like embassy)
205pub struct Rtc<'a> { 205pub struct Rtc<'a> {
206 _inst: core::marker::PhantomData<&'a ()>, 206 _inst: core::marker::PhantomData<&'a mut ()>,
207 info: &'static pac::rtc0::RegisterBlock, 207 info: &'static pac::rtc0::RegisterBlock,
208} 208}
209 209