PCI: Fix warning message in PCIE port driver
PCIE error output should conform to vendor_id:device_id. Signed-off-by: Prarit Bhargava <prarit@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9208ee8286
commit
bf5b4ba3d9
|
@ -93,7 +93,7 @@ static int __devinit pcie_portdrv_probe (struct pci_dev *dev,
|
||||||
if (!dev->irq && dev->pin) {
|
if (!dev->irq && dev->pin) {
|
||||||
printk(KERN_WARNING
|
printk(KERN_WARNING
|
||||||
"%s->Dev[%04x:%04x] has invalid IRQ. Check vendor BIOS\n",
|
"%s->Dev[%04x:%04x] has invalid IRQ. Check vendor BIOS\n",
|
||||||
__FUNCTION__, dev->device, dev->vendor);
|
__FUNCTION__, dev->vendor, dev->device);
|
||||||
}
|
}
|
||||||
if (pcie_port_device_register(dev)) {
|
if (pcie_port_device_register(dev)) {
|
||||||
pci_disable_device(dev);
|
pci_disable_device(dev);
|
||||||
|
|
Loading…
Reference in New Issue