diff options
author | Bjorn Helgaas | 2010-03-22 23:34:10 +0100 |
---|---|---|
committer | Jesse Barnes | 2010-03-25 16:51:38 +0100 |
commit | c9c9b564717e5b6b2ae8b770da1c73a348c84cce (patch) | |
tree | 52830702676d4f2ae7eb25696d169e5d12c9f8e7 /arch/x86/pci | |
parent | PCI: don't say we claimed a resource if we failed (diff) | |
download | kernel-qcow2-linux-c9c9b564717e5b6b2ae8b770da1c73a348c84cce.tar.gz kernel-qcow2-linux-c9c9b564717e5b6b2ae8b770da1c73a348c84cce.tar.xz kernel-qcow2-linux-c9c9b564717e5b6b2ae8b770da1c73a348c84cce.zip |
x86/PCI: remove redundant warnings
pci_claim_resource() already prints more detailed error messages, so these
are really redundant.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/i386.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index dece3eb9c906..46fd43f79103 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c @@ -127,9 +127,6 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) continue; if (!r->start || pci_claim_resource(dev, idx) < 0) { - dev_info(&dev->dev, - "can't reserve window %pR\n", - r); /* * Something is wrong with the region. * Invalidate the resource to prevent @@ -181,8 +178,6 @@ static void __init pcibios_allocate_resources(int pass) "BAR %d: reserving %pr (d=%d, p=%d)\n", idx, r, disabled, pass); if (pci_claim_resource(dev, idx) < 0) { - dev_info(&dev->dev, - "can't reserve %pR\n", r); /* We'll assign a new address later */ r->end -= r->start; r->start = 0; |