Skip to content

Commit

Permalink
Address latest clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mciantyre committed Jan 6, 2024
1 parent ede0bde commit 5b49848
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/imxrt1010/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mod pads;
pub use pads::*;

mod ccm {
pub use crate::ccm::{Function, Observable, Pin};
pub use crate::ccm::{Observable, Pin};

impl Pin for super::pads::gpio_sd::GPIO_SD_02 {
const ALT: u32 = 3;
Expand Down
2 changes: 1 addition & 1 deletion src/imxrt1020/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod pads;
pub use pads::*;

mod ccm {
pub use crate::ccm::{Function, Observable, Pin};
pub use crate::ccm::{Observable, Pin};

impl Pin for super::pads::gpio_sd_b1::GPIO_SD_B1_02 {
const ALT: u32 = 6;
Expand Down
2 changes: 1 addition & 1 deletion src/imxrt1170/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mod lpspi;
mod lpuart;

mod ccm {
pub use crate::ccm::{Function, Observable, Pin};
pub use crate::ccm::{Observable, Pin};

impl Pin for super::pads::gpio_emc_b1::GPIO_EMC_B1_40 {
const ALT: u32 = 9;
Expand Down

0 comments on commit 5b49848

Please sign in to comment.