PCI: fix section mismatch warning in pci_scan_child_bus

Fix following warning:
WARNING: vmlinux.o(.text+0x47bdb1): Section mismatch in reference from the function pci_scan_child_bus() to the function .devinit.text:pcibios_fixup_bus()

We had plenty of functions that could be annotated __devinit but due to
the former restriction that exported symbols could not be annotated
they were not so.  So annotate these function and fix the references
from the pci/hotplug/* code to silence the resuting warnings.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Sam Ravnborg
2008-02-17 10:45:28 +01:00
committed by Greg Kroah-Hartman
parent 415b6d0e89
commit 0ab2b57f8d
6 changed files with 9 additions and 9 deletions

View File

@@ -96,7 +96,7 @@ static void program_fw_provided_values(struct pci_dev *dev)
}
}
int shpchp_configure_device(struct slot *p_slot)
int __ref shpchp_configure_device(struct slot *p_slot)
{
struct pci_dev *dev;
struct pci_bus *parent = p_slot->ctrl->pci_dev->subordinate;