diff options
-rw-r--r-- | arch/powerpc/kernel/pci_32.c | 5 | ||||
-rw-r--r-- | arch/powerpc/kernel/pci_64.c | 2 | ||||
-rw-r--r-- | include/asm-powerpc/pci-bridge.h | 1 | ||||
-rw-r--r-- | include/asm-ppc/pci-bridge.h | 1 |
4 files changed, 7 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index d32cd500d8b8..0ad101a5fc5e 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c | |||
@@ -1269,7 +1269,10 @@ pcibios_init(void) | |||
1269 | if (pci_assign_all_buses) | 1269 | if (pci_assign_all_buses) |
1270 | hose->first_busno = next_busno; | 1270 | hose->first_busno = next_busno; |
1271 | hose->last_busno = 0xff; | 1271 | hose->last_busno = 0xff; |
1272 | bus = pci_scan_bus(hose->first_busno, hose->ops, hose); | 1272 | bus = pci_scan_bus_parented(hose->parent, hose->first_busno, |
1273 | hose->ops, hose); | ||
1274 | if (bus) | ||
1275 | pci_bus_add_devices(bus); | ||
1273 | hose->last_busno = bus->subordinate; | 1276 | hose->last_busno = bus->subordinate; |
1274 | if (pci_assign_all_buses || next_busno <= hose->last_busno) | 1277 | if (pci_assign_all_buses || next_busno <= hose->last_busno) |
1275 | next_busno = hose->last_busno + pcibios_assign_bus_offset; | 1278 | next_busno = hose->last_busno + pcibios_assign_bus_offset; |
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index 5ffab8787b93..74e580d25c1b 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c | |||
@@ -513,7 +513,7 @@ void __devinit scan_phb(struct pci_controller *hose) | |||
513 | 513 | ||
514 | DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>"); | 514 | DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>"); |
515 | 515 | ||
516 | bus = pci_create_bus(NULL, hose->first_busno, hose->ops, node); | 516 | bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node); |
517 | if (bus == NULL) { | 517 | if (bus == NULL) { |
518 | printk(KERN_ERR "Failed to create bus for PCI domain %04x\n", | 518 | printk(KERN_ERR "Failed to create bus for PCI domain %04x\n", |
519 | hose->global_number); | 519 | hose->global_number); |
diff --git a/include/asm-powerpc/pci-bridge.h b/include/asm-powerpc/pci-bridge.h index 86ee46b09b8a..7bb7f9009806 100644 --- a/include/asm-powerpc/pci-bridge.h +++ b/include/asm-powerpc/pci-bridge.h | |||
@@ -25,6 +25,7 @@ struct pci_controller { | |||
25 | int node; | 25 | int node; |
26 | void *arch_data; | 26 | void *arch_data; |
27 | struct list_head list_node; | 27 | struct list_head list_node; |
28 | struct device *parent; | ||
28 | 29 | ||
29 | int first_busno; | 30 | int first_busno; |
30 | int last_busno; | 31 | int last_busno; |
diff --git a/include/asm-ppc/pci-bridge.h b/include/asm-ppc/pci-bridge.h index 9d5230689b31..6c955d0c1ef0 100644 --- a/include/asm-ppc/pci-bridge.h +++ b/include/asm-ppc/pci-bridge.h | |||
@@ -43,6 +43,7 @@ struct pci_controller { | |||
43 | struct pci_controller *next; | 43 | struct pci_controller *next; |
44 | struct pci_bus *bus; | 44 | struct pci_bus *bus; |
45 | void *arch_data; | 45 | void *arch_data; |
46 | struct device *parent; | ||
46 | 47 | ||
47 | int first_busno; | 48 | int first_busno; |
48 | int last_busno; | 49 | int last_busno; |