aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Perez Llamas <[email protected]>2022-11-19 02:17:58 +0100
committerChristian Perez Llamas <[email protected]>2022-11-19 02:17:58 +0100
commitf5391efe22374e0c55005f20c6a644bda3acd50c (patch)
tree03bf3c90c2e1cd3ee35d37df2a4609feb1a65900
parent64e8cfef8e53293b35d2c5ea2b822bdc3a12111e (diff)
Fix fmt
-rw-r--r--embassy-nrf/src/i2s.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/i2s.rs b/embassy-nrf/src/i2s.rs
index 52b72df27..11c09a229 100644
--- a/embassy-nrf/src/i2s.rs
+++ b/embassy-nrf/src/i2s.rs
@@ -14,7 +14,7 @@ use embassy_hal_common::{into_ref, PeripheralRef};
14use crate::gpio::{AnyPin, Pin as GpioPin}; 14use crate::gpio::{AnyPin, Pin as GpioPin};
15use crate::interrupt::Interrupt; 15use crate::interrupt::Interrupt;
16use crate::pac::i2s::RegisterBlock; 16use crate::pac::i2s::RegisterBlock;
17use crate::{EASY_DMA_SIZE, Peripheral}; 17use crate::{Peripheral, EASY_DMA_SIZE};
18 18
19// TODO: Define those in lib.rs somewhere else 19// TODO: Define those in lib.rs somewhere else
20 20