[PATCH] PCI: trivial printk updates in common.c

Modified common.c so it's using the appropriate KERN_* in printk() calls.

Signed-off-by: Daniel Marjam�kia <daniel.marjamaki@comhem.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Daniel Marjam�kia and committed by Linus Torvalds dcb89074 657a19eb

+2 -2
+2 -2
arch/i386/pci/common.c
··· 132 } 133 } 134 135 - printk("PCI: Probing PCI hardware (bus %02x)\n", busnum); 136 137 return pci_scan_bus_parented(NULL, busnum, &pci_root_ops, NULL); 138 } ··· 144 struct cpuinfo_x86 *c = &boot_cpu_data; 145 146 if (!raw_pci_ops) { 147 - printk("PCI: System does not support PCI\n"); 148 return 0; 149 } 150
··· 132 } 133 } 134 135 + printk(KERN_DEBUG "PCI: Probing PCI hardware (bus %02x)\n", busnum); 136 137 return pci_scan_bus_parented(NULL, busnum, &pci_root_ops, NULL); 138 } ··· 144 struct cpuinfo_x86 *c = &boot_cpu_data; 145 146 if (!raw_pci_ops) { 147 + printk(KERN_WARNING "PCI: System does not support PCI\n"); 148 return 0; 149 } 150