aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Orona <[email protected]>2024-02-24 12:58:38 -0800
committerEli Orona <[email protected]>2024-02-24 12:58:38 -0800
commit394abda092cac80c875998c429f629caa289f9d1 (patch)
treec0ca43e8d593b0d1d8a88431b8458455358d6303
parente79d2dd7561c0acfb2eb81ea95929c1ca8ba1b77 (diff)
Fix report with the same name
-rw-r--r--embassy-stm32/src/rcc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/rcc/mod.rs b/embassy-stm32/src/rcc/mod.rs
index b5a8bc2a4..c8ca713de 100644
--- a/embassy-stm32/src/rcc/mod.rs
+++ b/embassy-stm32/src/rcc/mod.rs
@@ -32,7 +32,7 @@ mod _version;
32pub use _version::*; 32pub use _version::*;
33 33
34#[cfg(clock_mux)] 34#[cfg(clock_mux)]
35pub use crate::_generated::mux as mux; 35pub use crate::_generated::mux;
36pub use crate::_generated::Clocks; 36pub use crate::_generated::Clocks;
37 37
38#[cfg(feature = "low-power")] 38#[cfg(feature = "low-power")]