From 9c9b7b1a66dc90a9183886867811d2db57df714c Mon Sep 17 00:00:00 2001 From: Mathias Date: Thu, 18 Aug 2022 20:34:55 +0200 Subject: [PATCH] Remove unneeded NoDma struct --- embassy-rp/src/dma.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/embassy-rp/src/dma.rs b/embassy-rp/src/dma.rs index ec09a769..531ed802 100644 --- a/embassy-rp/src/dma.rs +++ b/embassy-rp/src/dma.rs @@ -96,10 +96,6 @@ impl State { static STATE: State = State::new(); -pub struct NoDma; - -impl_peripheral!(NoDma); - mod sealed { pub trait Channel {}