aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias <[email protected]>2022-08-18 20:34:55 +0200
committerMathias <[email protected]>2022-08-18 20:34:55 +0200
commit9c9b7b1a66dc90a9183886867811d2db57df714c (patch)
tree071c1cf634468cab6e03a3358fc59830400a49d0
parent55a63a5417ccfd2ca2792215920de14519a3d27b (diff)
Remove unneeded NoDma struct
-rw-r--r--embassy-rp/src/dma.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/embassy-rp/src/dma.rs b/embassy-rp/src/dma.rs
index ec09a7699..531ed8020 100644
--- a/embassy-rp/src/dma.rs
+++ b/embassy-rp/src/dma.rs
@@ -96,10 +96,6 @@ impl State {
96 96
97static STATE: State = State::new(); 97static STATE: State = State::new();
98 98
99pub struct NoDma;
100
101impl_peripheral!(NoDma);
102
103mod sealed { 99mod sealed {
104 pub trait Channel {} 100 pub trait Channel {}
105 101