From d8dbf520fb5acde7f92d7ea25bbebbcb7cba56ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Mon, 26 Jun 2023 19:19:22 +0200 Subject: [PATCH] Remove redundant trait bounds --- esp-hal-common/src/i2s.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/esp-hal-common/src/i2s.rs b/esp-hal-common/src/i2s.rs index ad8779609..298950246 100644 --- a/esp-hal-common/src/i2s.rs +++ b/esp-hal-common/src/i2s.rs @@ -589,7 +589,6 @@ where TX: Tx, RX: Rx, IP: I2sPeripheral + I2s0Peripheral, - RX: Rx, { fn new( i2s: impl Peripheral

+ 'd, @@ -645,7 +644,6 @@ where TX: Tx, RX: Rx, IP: I2sPeripheral + I2s1Peripheral, - RX: Rx, { fn new( i2s: impl Peripheral

+ 'd,