Browse Source

fix Clippy warning on non-minimal-cfg

Daniel Maslowski 1 year ago
parent
commit
7c0f48642a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -31,7 +31,7 @@
 pub mod asm;
 pub mod delay;
 pub mod interrupt;
-#[cfg(any(feature = "plic"))]
+#[cfg(feature = "plic")]
 pub mod peripheral;
 pub mod register;