Commit 600de1c0 authored by Gary Guo's avatar Gary Guo Committed by Danilo Krummrich
Browse files

rust: pci: remove redundant `.as_ref()` for `dev_*` print



This is now handled by the macro itself.

Signed-off-by: default avatarGary Guo <gary@garyguo.net>
Link: https://patch.msgid.link/20260123175854.176735-2-gary@kernel.org


Signed-off-by: default avatarDanilo Krummrich <dakr@kernel.org>
parent a38cd1fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -348,7 +348,7 @@ impl Device {
    ///     // Get an instance of `Vendor`.
    ///     let vendor = pdev.vendor_id();
    ///     dev_info!(
    ///         pdev.as_ref(),
    ///         pdev,
    ///         "Device: Vendor={}, Device=0x{:x}\n",
    ///         vendor,
    ///         pdev.device_id()
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
/// fn probe_device(pdev: &pci::Device<Core>) -> Result {
///     let pci_class = pdev.pci_class();
///     dev_info!(
///         pdev.as_ref(),
///         pdev,
///         "Detected PCI class: {}\n",
///         pci_class
///     );
+3 −3
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ fn probe(pdev: &pci::Device<Core>, info: &Self::IdInfo) -> impl PinInit<Self, Er
        pin_init::pin_init_scope(move || {
            let vendor = pdev.vendor_id();
            dev_dbg!(
                pdev.as_ref(),
                pdev,
                "Probe Rust PCI driver sample (PCI ID: {}, 0x{:x}).\n",
                vendor,
                pdev.device_id()
@@ -117,7 +117,7 @@ fn probe(pdev: &pci::Device<Core>, info: &Self::IdInfo) -> impl PinInit<Self, Er
                    let bar = bar.access(pdev.as_ref())?;

                    dev_info!(
                        pdev.as_ref(),
                        pdev,
                        "pci-testdev data-match count: {}\n",
                        Self::testdev(info, bar)?
                    );
@@ -139,7 +139,7 @@ fn unbind(pdev: &pci::Device<Core>, this: Pin<&Self>) {
#[pinned_drop]
impl PinnedDrop for SampleDriver {
    fn drop(self: Pin<&mut Self>) {
        dev_dbg!(self.pdev.as_ref(), "Remove Rust PCI driver sample.\n");
        dev_dbg!(self.pdev, "Remove Rust PCI driver sample.\n");
    }
}