diff options
Diffstat (limited to 'src/peripheral/mod.rs')
-rw-r--r-- | src/peripheral/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs index 4462136..d46622d 100644 --- a/src/peripheral/mod.rs +++ b/src/peripheral/mod.rs @@ -84,6 +84,7 @@ use core::ops; use interrupt; +// NOTE(target_arch) is for documentation purposes #[cfg(any(armv7m, target_arch = "x86_64"))] pub mod cbp; pub mod cpuid; @@ -93,7 +94,6 @@ pub mod dwt; pub mod fpb; #[cfg(any(has_fpu, target_arch = "x86_64"))] pub mod fpu; -// NOTE(target_arch) is for documentation purposes #[cfg(any(armv7m, target_arch = "x86_64"))] pub mod itm; pub mod mpu; |