Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
glindstedt committed Nov 7, 2020
1 parent 11eb898 commit e57df99
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/devices/is42s16400j.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/// Speed Grade 7
pub mod is42s16400j_7 {
use crate::sdram::{SdramConfiguration, SdramTiming, SdramChip};
use crate::sdram::{SdramChip, SdramConfiguration, SdramTiming};

const BURST_LENGTH_1: u16 = 0x0000;
const BURST_LENGTH_2: u16 = 0x0001;
Expand Down
2 changes: 1 addition & 1 deletion src/devices/is42s32800g.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/// Speed Grade 6
pub mod is42s32800g_6 {
use crate::sdram::{SdramConfiguration, SdramTiming, SdramChip};
use crate::sdram::{SdramChip, SdramConfiguration, SdramTiming};

const BURST_LENGTH_1: u16 = 0x0000;
const BURST_LENGTH_2: u16 = 0x0001;
Expand Down
2 changes: 1 addition & 1 deletion src/devices/mt48lc4m32b2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/// Speed Grade 6
pub mod mt48lc4m32b2_6 {
use crate::sdram::{SdramConfiguration, SdramTiming, SdramChip};
use crate::sdram::{SdramChip, SdramConfiguration, SdramTiming};

const BURST_LENGTH_1: u16 = 0x0000;
const BURST_LENGTH_2: u16 = 0x0001;
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ pub use fmc::*;
mod sdram;
#[cfg(feature = "sdram")]
pub use sdram::{
SdramConfiguration, SdramTiming, PinsSdram, Sdram, SdramChip,
SdramPinSet, SdramTargetBank,
PinsSdram, Sdram, SdramChip, SdramConfiguration, SdramPinSet,
SdramTargetBank, SdramTiming,
};

/// Memory device definitions
Expand Down

0 comments on commit e57df99

Please sign in to comment.