diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2013-07-06 01:17:27 +0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-07-25 22:18:42 +0400 |
commit | 24336a61e699c33154001eb4d65d3a1bb01a1b3a (patch) | |
tree | be91f165c2f17376453d1e8ec0f37c11f9e98bb9 /arch/frv/mb93090-mb00 | |
parent | 7cc24e12bd0ee011caa840c1324f613f00d3fc27 (diff) | |
download | linux-24336a61e699c33154001eb4d65d3a1bb01a1b3a.tar.xz |
frv/PCI: Mark pcibios_fixup_bus() as non-init
pcibios_fixup_bus() is called by pci_scan_child_bus(), which is not marked
__init. Therefore, pcibios_fixup_bus() cannot be marked __init either.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/frv/mb93090-mb00')
-rw-r--r-- | arch/frv/mb93090-mb00/pci-vdk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/mb93090-mb00/pci-vdk.c b/arch/frv/mb93090-mb00/pci-vdk.c index 0aa35f0eb0db..deb67843693c 100644 --- a/arch/frv/mb93090-mb00/pci-vdk.c +++ b/arch/frv/mb93090-mb00/pci-vdk.c @@ -320,7 +320,7 @@ DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_ide_bases); * are examined. */ -void __init pcibios_fixup_bus(struct pci_bus *bus) +void pcibios_fixup_bus(struct pci_bus *bus) { #if 0 printk("### PCIBIOS_FIXUP_BUS(%d)\n",bus->number); |