Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcb89074 authored by Daniel Marjamäkia's avatar Daniel Marjamäkia Committed by Linus Torvalds
Browse files

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



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

Signed-off-by: default avatarDaniel Marjamkia <daniel.marjamaki@comhem.se>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 657a19eb
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -132,7 +132,7 @@ struct pci_bus * __devinit pcibios_scan_root(int busnum)
		}
		}
	}
	}


	printk("PCI: Probing PCI hardware (bus %02x)\n", busnum);
	printk(KERN_DEBUG "PCI: Probing PCI hardware (bus %02x)\n", busnum);


	return pci_scan_bus_parented(NULL, busnum, &pci_root_ops, NULL);
	return pci_scan_bus_parented(NULL, busnum, &pci_root_ops, NULL);
}
}
@@ -144,7 +144,7 @@ static int __init pcibios_init(void)
	struct cpuinfo_x86 *c = &boot_cpu_data;
	struct cpuinfo_x86 *c = &boot_cpu_data;


	if (!raw_pci_ops) {
	if (!raw_pci_ops) {
		printk("PCI: System does not support PCI\n");
		printk(KERN_WARNING "PCI: System does not support PCI\n");
		return 0;
		return 0;
	}
	}