Commit 07608e1e authored by Jochen Hein's avatar Jochen Hein Committed by Deepak Saxena

[PATCH] PCI: message cleanup in PCI probe

The messages read:

PCI: Address space collision on region 8 of bridge 0000:00:1f.0 [1180:11bf]
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1
Transparent bridge - 0000:00:1e.0
PCI: Using IRQ router PIIX/ICH [8086/24cc] at 0000:00:1f.0
PCI: Found IRQ 11 for device 0000:00:1f.1

The following patch adds "PCI: " in front of the message and KERN_INFO as well.
Compile&boot tested.

Jochen
parent 011ac688
...@@ -193,7 +193,7 @@ void __devinit pci_read_bridge_bases(struct pci_bus *child) ...@@ -193,7 +193,7 @@ void __devinit pci_read_bridge_bases(struct pci_bus *child)
return; return;
if (dev->transparent) { if (dev->transparent) {
printk("Transparent bridge - %s\n", pci_name(dev)); printk(KERN_INFO "PCI: Transparent bridge - %s\n", pci_name(dev));
for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++)
child->resource[i] = child->parent->resource[i]; child->resource[i] = child->parent->resource[i];
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment