From cd0b777cc0c71c0f132a49a76addbd468259c4f7 Mon Sep 17 00:00:00 2001 From: Jared Szechy Date: Wed, 29 Oct 2025 22:46:06 -0400 Subject: allow unused --- embassy-stm32/src/sdmmc/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/embassy-stm32/src/sdmmc/mod.rs b/embassy-stm32/src/sdmmc/mod.rs index c3f6bde77..eef0be4c4 100644 --- a/embassy-stm32/src/sdmmc/mod.rs +++ b/embassy-stm32/src/sdmmc/mod.rs @@ -1032,6 +1032,7 @@ impl<'d, T: Instance> Sdmmc<'d, T> { /// Wait for a previously started datapath transfer to complete from an interrupt. #[inline] + #[allow(unused)] async fn complete_datapath_transfer(block: bool) -> Result<(), Error> { let regs = T::regs(); -- cgit