frv/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>

authored by Bjorn Helgaas and committed by Jesse Barnes 99f4692e c9c9b564

+1 -3
+1 -3
arch/frv/mb93090-mb00/pci-frv.c
··· 94 r = &dev->resource[idx]; 95 if (!r->start) 96 continue; 97 - if (pci_claim_resource(dev, idx) < 0) 98 - printk(KERN_ERR "PCI: Cannot allocate resource region %d of bridge %s\n", idx, pci_name(dev)); 99 } 100 } 101 pcibios_allocate_bus_resources(&bus->children); ··· 124 DBG("PCI: Resource %08lx-%08lx (f=%lx, d=%d, p=%d)\n", 125 r->start, r->end, r->flags, disabled, pass); 126 if (pci_claim_resource(dev, idx) < 0) { 127 - printk(KERN_ERR "PCI: Cannot allocate resource region %d of device %s\n", idx, pci_name(dev)); 128 /* We'll assign a new address later */ 129 r->end -= r->start; 130 r->start = 0;
··· 94 r = &dev->resource[idx]; 95 if (!r->start) 96 continue; 97 + pci_claim_resource(dev, idx); 98 } 99 } 100 pcibios_allocate_bus_resources(&bus->children); ··· 125 DBG("PCI: Resource %08lx-%08lx (f=%lx, d=%d, p=%d)\n", 126 r->start, r->end, r->flags, disabled, pass); 127 if (pci_claim_resource(dev, idx) < 0) { 128 /* We'll assign a new address later */ 129 r->end -= r->start; 130 r->start = 0;