Skip to content

Commit

Permalink
Merge pull request tock#3680 from tock/boards-clippy-true
Browse files Browse the repository at this point in the history
boards: fix clippy ==true
  • Loading branch information
ppannuto authored Sep 18, 2023
2 parents 4015ee7 + f7d7260 commit cd10b16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boards/clue_nrf52840/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl IoWrite for Writer {
n.clear_pending();
n.enable();
}
if DUMMY.fired.get() == true {
if DUMMY.fired.get() {
// buffer finished transmitting, return so we can output additional
// messages when requested by the panic handler.
break;
Expand Down
2 changes: 1 addition & 1 deletion boards/nano33ble/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl IoWrite for Writer {
n.clear_pending();
n.enable();
}
if DUMMY.fired.get() == true {
if DUMMY.fired.get() {
// buffer finished transmitting, return so we can output additional
// messages when requested by the panic handler.
break;
Expand Down
2 changes: 1 addition & 1 deletion boards/particle_boron/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl IoWrite for Writer {
n.clear_pending();
n.enable();
}
if DUMMY.fired.get() == true {
if DUMMY.fired.get() {
// buffer finished transmitting, return so we can output additional
// messages when requested by the panic handler.
break;
Expand Down

0 comments on commit cd10b16

Please sign in to comment.