aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/pci/pci-sysfs.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2019-05-07 17:37:53 -0500
committerBjorn Helgaas <bhelgaas@google.com>2019-05-09 07:49:49 -0500
commit7db4af43c97b68dc65394c799b86cdd0fffe5f8d (patch)
tree07ac26d53db62f28a3235c26b7d1d9ec0777d281 /drivers/pci/pci-sysfs.c
parentLinux 5.1-rc1 (diff)
downloadwireguard-linux-7db4af43c97b68dc65394c799b86cdd0fffe5f8d.tar.xz
wireguard-linux-7db4af43c97b68dc65394c799b86cdd0fffe5f8d.zip
PCI: Use dev_printk() when possible
Use dev_printk() when possible. This makes messages more consistent with other device-related messages and, in some cases, adds useful information. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pci-sysfs.c')
-rw-r--r--drivers/pci/pci-sysfs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index 25794c27c7a4..6d27475e39b2 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -1111,8 +1111,7 @@ legacy_io_err:
kfree(b->legacy_io);
b->legacy_io = NULL;
kzalloc_err:
- printk(KERN_WARNING "pci: warning: could not create legacy I/O port and ISA memory resources to sysfs\n");
- return;
+ dev_warn(&b->dev, "could not create legacy I/O port and ISA memory resources in sysfs\n");
}
void pci_remove_legacy_files(struct pci_bus *b)