Commit 7db4af43 authored by Bjorn Helgaas's avatar Bjorn Helgaas
Browse files

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: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 9e98c678
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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)
+3 −3
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ static int __init pci_apply_final_quirks(void)
			if (!tmp || cls == tmp)
				continue;

			printk(KERN_DEBUG "PCI: CLS mismatch (%u != %u), using %u bytes\n",
			pci_printk(KERN_DEBUG, dev, "CLS mismatch (%u != %u), using %u bytes\n",
				   cls << 2, tmp << 2,
				   pci_dfl_cache_line_size << 2);
			pci_cache_line_size = pci_dfl_cache_line_size;