[PATCH] PowerPC/PCI Hotplug build break

Build break: Building PCI hotplug on PowerPC results in
a build break, due to failure to export symbols.

Reported today by Dave Jones <davej@redhat.com>:
drivers/pci/hotplug/rpaphp.ko needs unknown symbol pcibios_add_pci_devices

This patch fixes the break in the arch/powerpc tree.
Next patch fixes same problem in drivers/pci tree

Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Linas Vepstas and committed by Linus Torvalds f9bdfa0e 3c3b809e

+3
+3
arch/powerpc/platforms/pseries/pci_dlpar.c
··· 58 58 59 59 return find_bus_among_children(pdn->phb->bus, dn); 60 60 } 61 + EXPORT_SYMBOL_GPL(pcibios_find_pci_bus); 61 62 62 63 /** 63 64 * pcibios_remove_pci_devices - remove all devices under this bus ··· 107 106 } 108 107 } 109 108 } 109 + EXPORT_SYMBOL_GPL(pcibios_fixup_new_pci_devices); 110 110 111 111 static int 112 112 pcibios_pci_config_bridge(struct pci_dev *dev) ··· 174 172 pcibios_pci_config_bridge(dev); 175 173 } 176 174 } 175 + EXPORT_SYMBOL_GPL(pcibios_add_pci_devices);