From 0cc683a50fe8de0ff2c20fd895ba9c319657828c Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 11 Oct 2022 23:47:56 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=93=A6=20Fix=20new=20clippy?= =?UTF-8?q?=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- machine/src/platform/rpi3/gpio.rs | 2 +- machine/src/platform/rpi3/mailbox.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/machine/src/platform/rpi3/gpio.rs b/machine/src/platform/rpi3/gpio.rs index 3e4b09c..06d4509 100644 --- a/machine/src/platform/rpi3/gpio.rs +++ b/machine/src/platform/rpi3/gpio.rs @@ -221,7 +221,7 @@ impl Pin { self.registers.PUDCLK[bank].modify(FieldValue::::new( 0b1, off, - if pull == PullUpDown::Up { 1 } else { 0 }, + (pull == PullUpDown::Up).into(), )); loop_delay(2000); diff --git a/machine/src/platform/rpi3/mailbox.rs b/machine/src/platform/rpi3/mailbox.rs index 470b68e..1e09660 100644 --- a/machine/src/platform/rpi3/mailbox.rs +++ b/machine/src/platform/rpi3/mailbox.rs @@ -461,7 +461,7 @@ impl Mailbox< buf[index + 1] = 8; // Buffer size // val buf size buf[index + 2] = 0; // Response size // val size buf[index + 3] = 130; // Pin Number - buf[index + 4] = if enable { 1 } else { 0 }; + buf[index + 4] = enable.into(); index + 5 }