aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r--drivers/pci/probe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 504f19b2af45..07d5c7424b01 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -631,7 +631,9 @@ int __devinit pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max,
631 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max); 631 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);
632 } 632 }
633 633
634 sprintf(child->name, (is_cardbus ? "PCI CardBus #%02x" : "PCI Bus #%02x"), child->number); 634 sprintf(child->name,
635 (is_cardbus ? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"),
636 pci_domain_nr(bus), child->number);
635 637
636 /* Has only triggered on CardBus, fixup is in yenta_socket */ 638 /* Has only triggered on CardBus, fixup is in yenta_socket */
637 while (bus->parent) { 639 while (bus->parent) {