aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/probe.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2012-09-24 19:24:11 -0400
committerBjorn Helgaas <bhelgaas@google.com>2012-09-24 19:24:11 -0400
commit78c8f84302ce007aedcfa11912fd4aacf22727ab (patch)
treef7a699c34875cd33c2e6c1301b740adb0ba4054f /drivers/pci/probe.c
parentd3ce52f50cc1697504130897f1d7c489b62dae1c (diff)
parent84544a1dea61879edebceddb7a76d5737409f8c8 (diff)
Merge branch 'pci/yinghai-misc' into next
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r--drivers/pci/probe.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 23961117663f..ec909afa90b6 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -729,8 +729,10 @@ int __devinit pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max,
729 729
730 /* Check if setup is sensible at all */ 730 /* Check if setup is sensible at all */
731 if (!pass && 731 if (!pass &&
732 (primary != bus->number || secondary <= bus->number)) { 732 (primary != bus->number || secondary <= bus->number ||
733 dev_dbg(&dev->dev, "bus configuration invalid, reconfiguring\n"); 733 secondary > subordinate)) {
734 dev_info(&dev->dev, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n",
735 secondary, subordinate);
734 broken = 1; 736 broken = 1;
735 } 737 }
736 738