Commit 73cd3b43 authored by Jiri Slaby's avatar Jiri Slaby Committed by Jesse Barnes

x86/PCI: pci, fix section mismatch

pcibios_scan_specific_bus calls pci_scan_bus_on_node which is
__devinit. Mark pcibios_scan_specific_bus __devinit as well since
all users are now __init or __devinit.
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent f3ec4f87
...@@ -36,7 +36,7 @@ int __init pci_legacy_init(void) ...@@ -36,7 +36,7 @@ int __init pci_legacy_init(void)
return 0; return 0;
} }
void pcibios_scan_specific_bus(int busn) void __devinit pcibios_scan_specific_bus(int busn)
{ {
int devfn; int devfn;
long node; long node;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment