cargo fmt

pull/259/head
Sebastien Bourdeauducq 2023-08-30 16:14:35 +08:00
parent c9b574f5c7
commit 37df7fd45b
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ impl IoExpander {
}
pub fn service(&mut self, i2c: &mut i2c::I2c) -> Result<(), &'static str> {
#[cfg(has_virtual_leds)]
#[cfg(has_virtual_leds)]
for (led, port, bit) in self.virtual_led_mapping.iter() {
let level = unsafe { csr::virtual_leds::status_read() >> led & 1 };
self.set(*port, *bit, level != 0);