|
@@ -129,7 +129,7 @@ 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) {
|
|
|
- dev_err(&dev->dev, "BAR %d: can't allocate resource\n", idx);
|
|
|
+ dev_info(&dev->dev, "BAR %d: can't allocate resource\n", idx);
|
|
|
/*
|
|
|
* Something is wrong with the region.
|
|
|
* Invalidate the resource to prevent
|
|
@@ -170,7 +170,7 @@ static void __init pcibios_allocate_resources(int pass)
|
|
|
r->flags, disabled, pass);
|
|
|
pr = pci_find_parent_resource(dev, r);
|
|
|
if (!pr || request_resource(pr, r) < 0) {
|
|
|
- dev_err(&dev->dev, "BAR %d: can't allocate resource\n", idx);
|
|
|
+ dev_info(&dev->dev, "BAR %d: can't allocate resource\n", idx);
|
|
|
/* We'll assign a new address later */
|
|
|
r->end -= r->start;
|
|
|
r->start = 0;
|