diff options
| author | linas <linas@austin.ibm.com> | 2006-01-10 15:18:16 -0600 | 
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-01-11 14:47:30 +1100 | 
| commit | af9deabeb0298559227fd9b481d33aefcb15ca54 (patch) | |
| tree | 413ade0271ccf598efb64b6f6d9c928bb80fa55c /arch/powerpc | |
| parent | ad2b2426bb8dce97827182946e33e7f7ff0afbce (diff) | |
| download | olio-linux-3.10-af9deabeb0298559227fd9b481d33aefcb15ca54.tar.xz olio-linux-3.10-af9deabeb0298559227fd9b481d33aefcb15ca54.zip  | |
[PATCH] PCI Hotplug/powerpc: module build break
The RPAPHP hoplug driver will not build as a module, because it calls
on a pcibios routine which is not exported. This exports the symbol.
Problem reported by Olaf Hering <olh@suse.de>
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
| -rw-r--r-- | arch/powerpc/kernel/pci_64.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index ba21a6c4f46..24fe70f40b6 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c @@ -271,6 +271,9 @@ void __devinit pcibios_claim_one_bus(struct pci_bus *b)  	list_for_each_entry(child_bus, &b->children, node)  		pcibios_claim_one_bus(child_bus);  } +#ifdef CONFIG_HOTPLUG +EXPORT_SYMBOL_GPL(pcibios_claim_one_bus); +#endif  #ifndef CONFIG_PPC_ISERIES  static void __init pcibios_claim_of_setup(void)  |