mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[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>
This commit is contained in:
parent
ad2b2426bb
commit
af9deabeb0
1 changed files with 3 additions and 0 deletions
|
@ -271,6 +271,9 @@ void __devinit pcibios_claim_one_bus(struct pci_bus *b)
|
||||||
list_for_each_entry(child_bus, &b->children, node)
|
list_for_each_entry(child_bus, &b->children, node)
|
||||||
pcibios_claim_one_bus(child_bus);
|
pcibios_claim_one_bus(child_bus);
|
||||||
}
|
}
|
||||||
|
#ifdef CONFIG_HOTPLUG
|
||||||
|
EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_PPC_ISERIES
|
#ifndef CONFIG_PPC_ISERIES
|
||||||
static void __init pcibios_claim_of_setup(void)
|
static void __init pcibios_claim_of_setup(void)
|
||||||
|
|
Loading…
Reference in a new issue