diff options
author | Linas Vepstas <linas@austin.ibm.com> | 2006-02-01 19:19:06 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-01 19:35:29 -0500 |
commit | f9bdfa0ecb3304e8b7e74862b1f4b03b6feaaeef (patch) | |
tree | d9a8bb1799ac0d8dec31acb8e3ce962e1eac21b8 /arch | |
parent | 3c3b809e256c417847f1a96b2f9d9f66c7fcb02c (diff) |
[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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pseries/pci_dlpar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/pci_dlpar.c b/arch/powerpc/platforms/pseries/pci_dlpar.c index 21934784f936..bdaa8aabdaa6 100644 --- a/arch/powerpc/platforms/pseries/pci_dlpar.c +++ b/arch/powerpc/platforms/pseries/pci_dlpar.c | |||
@@ -58,6 +58,7 @@ pcibios_find_pci_bus(struct device_node *dn) | |||
58 | 58 | ||
59 | return find_bus_among_children(pdn->phb->bus, dn); | 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 | * pcibios_remove_pci_devices - remove all devices under this bus | 64 | * pcibios_remove_pci_devices - remove all devices under this bus |
@@ -106,6 +107,7 @@ pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus) | |||
106 | } | 107 | } |
107 | } | 108 | } |
108 | } | 109 | } |
110 | EXPORT_SYMBOL_GPL(pcibios_fixup_new_pci_devices); | ||
109 | 111 | ||
110 | static int | 112 | static int |
111 | pcibios_pci_config_bridge(struct pci_dev *dev) | 113 | pcibios_pci_config_bridge(struct pci_dev *dev) |
@@ -172,3 +174,4 @@ pcibios_add_pci_devices(struct pci_bus * bus) | |||
172 | pcibios_pci_config_bridge(dev); | 174 | pcibios_pci_config_bridge(dev); |
173 | } | 175 | } |
174 | } | 176 | } |
177 | EXPORT_SYMBOL_GPL(pcibios_add_pci_devices); | ||