diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-07-20 13:14:07 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-07-20 13:14:07 +0900 |
commit | beeea6d6a1f9c39fbda3abdd2c528ba90422e4bf (patch) | |
tree | 97a83a455aa0392b291802215457920a288eb544 /arch/sh64 | |
parent | 207a130540b045d2dc7ce7becaa7a687b81548b9 (diff) | |
download | kernel_i9300_mainline-beeea6d6a1f9c39fbda3abdd2c528ba90422e4bf.zip kernel_i9300_mainline-beeea6d6a1f9c39fbda3abdd2c528ba90422e4bf.tar.gz kernel_i9300_mainline-beeea6d6a1f9c39fbda3abdd2c528ba90422e4bf.tar.bz2 |
sh64: Fix up PCI section mismatch warnings.
pcibios_fixup_bus() and pcibios_setup() should be __devinit.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/kernel/pci_sh5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh64/kernel/pci_sh5.c b/arch/sh64/kernel/pci_sh5.c index 3334f99..388bb71 100644 --- a/arch/sh64/kernel/pci_sh5.c +++ b/arch/sh64/kernel/pci_sh5.c @@ -48,7 +48,7 @@ static void __init pci_fixup_ide_bases(struct pci_dev *d) } DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_ide_bases); -char * __init pcibios_setup(char *str) +char * __devinit pcibios_setup(char *str) { return str; } @@ -497,7 +497,7 @@ static int __init pcibios_init(void) subsys_initcall(pcibios_init); -void __init pcibios_fixup_bus(struct pci_bus *bus) +void __devinit pcibios_fixup_bus(struct pci_bus *bus) { struct pci_dev *dev = bus->self; int i; |