diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index 94f6c73..b08bbdd 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c @@ -128,10 +128,11 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) pr = pci_find_parent_resource(dev, r); if (!r->start || !pr || request_resource(pr, r) < 0) { - printk(KERN_ERR "PCI: Cannot allocate " - "resource region %d " - "of bridge %s\n", - idx, pci_name(dev)); + printk(KERN_WARNING "PCI: " + "Cannot allocate " + "resource region %d " + "of bridge %s\n", + idx, pci_name(dev)); /* * Something is wrong with the region. * Invalidate the resource to prevent @@ -171,10 +172,11 @@ static void __init pcibios_allocate_resources(int pass) r->start, r->end, r->flags, disabled, pass); pr = pci_find_parent_resource(dev, r); if (!pr || request_resource(pr, r) < 0) { - printk(KERN_ERR "PCI: Cannot allocate " - "resource region %d " - "of device %s\n", - idx, pci_name(dev)); + printk(KERN_WARNING "PCI: " + "Cannot allocate " + "resource region %d " + "of device %s\n", + idx, pci_name(dev)); /* We'll assign a new address later */ r->end -= r->start; r->start = 0;