From e49fae653349e9aaa11f4511f558c769a99135d0 Mon Sep 17 00:00:00 2001 From: Kamil Koczurek Date: Fri, 27 Sep 2024 23:40:42 +0200 Subject: [PATCH] chore: fmt.sh --- common/src/io.rs | 2 +- pcid/src/driver_interface/msi.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/io.rs b/common/src/io.rs index 955cf0a06f..698b23fb02 100644 --- a/common/src/io.rs +++ b/common/src/io.rs @@ -92,4 +92,4 @@ impl WriteOnly { pub fn writef(&mut self, flags: I::Value, value: bool) { self.inner.writef(flags, value) } -} \ No newline at end of file +} diff --git a/pcid/src/driver_interface/msi.rs b/pcid/src/driver_interface/msi.rs index d95837eb77..3168c61cda 100644 --- a/pcid/src/driver_interface/msi.rs +++ b/pcid/src/driver_interface/msi.rs @@ -2,8 +2,8 @@ use std::fmt; use crate::driver_interface::PciBar; -use serde::{Deserialize, Serialize}; use common::io::{Io, Mmio}; +use serde::{Deserialize, Serialize}; /// The address and data to use for MSI and MSI-X. ///