aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/pci_32.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2006-11-11 01:25:07 -0500
committerPaul Mackerras <paulus@samba.org>2006-12-04 04:38:47 -0500
commit803d4573e60bc890d7fbc040ad1c18c2dc7f8279 (patch)
tree62f1194b7d477c6f67fa874bf78a1b3183ad30ab /arch/powerpc/kernel/pci_32.c
parent6506e7102fd57b138979f131d751014462181202 (diff)
[POWERPC] Add "parent" struct device for PCI host bridges
Add a "parent" struct device to our PCI host bridge data structure so that PCI can be rooted off another device in sysfs. Note that arch/ppc doesn't use it, only arch/powerpc, though it's available for both 32 and 64 bits. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/pci_32.c')
-rw-r--r--arch/powerpc/kernel/pci_32.c5
1 files changed, 4 insertions, 1 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;