aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuntc <[email protected]>2021-12-08 12:13:49 +1100
committerhuntc <[email protected]>2021-12-08 12:13:49 +1100
commit090a7adf78cd6d9dea8fee773523c53a03ae63d5 (patch)
tree8d2d1e40bc8d14df64647b0bff18b847c8dd31bc
parent4e7fa5228886b9c551b5704b9c27cb523934e43e (diff)
Keep Clippy happy
-rw-r--r--embassy-nrf/src/uarte.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/uarte.rs b/embassy-nrf/src/uarte.rs
index 70f509afc..72dcd41b2 100644
--- a/embassy-nrf/src/uarte.rs
+++ b/embassy-nrf/src/uarte.rs
@@ -276,7 +276,7 @@ impl<'d, T: Instance> Write for Uarte<'d, T> {
276} 276}
277 277
278#[cfg(not(any(feature = "_nrf9160", feature = "nrf5340")))] 278#[cfg(not(any(feature = "_nrf9160", feature = "nrf5340")))]
279pub(in crate) fn apply_workaround_for_enable_anomaly(r: &crate::pac::uarte0::RegisterBlock) { 279pub(in crate) fn apply_workaround_for_enable_anomaly(_r: &crate::pac::uarte0::RegisterBlock) {
280 // Do nothing 280 // Do nothing
281} 281}
282 282