diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/kernel/pci.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/sparc/kernel/pci.c b/arch/sparc/kernel/pci.c index da24fb6deb03..cc4c31e5185e 100644 --- a/arch/sparc/kernel/pci.c +++ b/arch/sparc/kernel/pci.c | |||
@@ -489,6 +489,17 @@ static void of_scan_pci_bridge(struct pci_pbm_info *pbm, | |||
489 | size = GET_64BIT(ranges, 6); | 489 | size = GET_64BIT(ranges, 6); |
490 | if (flags == 0 || size == 0) | 490 | if (flags == 0 || size == 0) |
491 | continue; | 491 | continue; |
492 | |||
493 | /* On PCI-Express systems, PCI bridges that have no devices downstream | ||
494 | * have a bogus size value where the first 32-bit cell is 0xffffffff. | ||
495 | * This results in a bogus range where start + size overflows. | ||
496 | * | ||
497 | * Just skip these otherwise the kernel will complain when the resource | ||
498 | * tries to be claimed. | ||
499 | */ | ||
500 | if (size >> 32 == 0xffffffff) | ||
501 | continue; | ||
502 | |||
492 | if (flags & IORESOURCE_IO) { | 503 | if (flags & IORESOURCE_IO) { |
493 | res = bus->resource[0]; | 504 | res = bus->resource[0]; |
494 | if (res->flags) { | 505 | if (res->flags) { |