diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2006-01-06 00:11:35 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 08:33:31 -0800 |
commit | dbeb198d9366eb3d3ad64444ceecb5b1d5b5d7ef (patch) | |
tree | 78380a8bb90dec84209a5edf268b2850cf743ed7 /arch/ppc | |
parent | e21b9f2e9a580ce7375ec58953c1bb19aabe0db4 (diff) | |
download | op-kernel-dev-dbeb198d9366eb3d3ad64444ceecb5b1d5b5d7ef.zip op-kernel-dev-dbeb198d9366eb3d3ad64444ceecb5b1d5b5d7ef.tar.gz |
[PATCH] ppc32: Remove __init qualifier from mpc52xx pci resources fixups
The mpc52xx_pci_fixup_resources is not only called at init but also when there
is a pci hotplug like when a cardbus card is plugged in. So that function is
needed after init too.
Thanks to Asier Llano Palacios for reporting this.
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/syslib/mpc52xx_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/syslib/mpc52xx_pci.c b/arch/ppc/syslib/mpc52xx_pci.c index 4ac1908..e6cb3e2 100644 --- a/arch/ppc/syslib/mpc52xx_pci.c +++ b/arch/ppc/syslib/mpc52xx_pci.c @@ -151,7 +151,7 @@ mpc52xx_pci_setup(struct mpc52xx_pci __iomem *pci_regs) #endif } -static void __init +static void mpc52xx_pci_fixup_resources(struct pci_dev *dev) { int i; |