diff options
author | Adrian Cox <adrian@humboldt.co.uk> | 2006-03-08 17:10:20 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-16 21:23:21 -0500 |
commit | bbbe1212bd6f815290f782ba5b489467b54131dc (patch) | |
tree | 3964aa125e7039ff005779d0ba88205d1f9e5f3c /arch/ppc/platforms/cpci690.c | |
parent | 7e5b59384eebe35bff8429243f089931ce1cdf38 (diff) |
[PATCH] ppc: Fix platform_notify functions marked __init
While adding USB support to an MV64360 based board this week, I
discovered that all MV64x60 boards in the kernel have platform_notify
functions marked with __init. This causes an oops if a device is added
after boot.
The patch below removes the __init markers. I do not have all these
boards to test on, but the change seems very unlikely to break anything
else.
Signed-off-by: Adrian Cox <adrian@humboldt.co.uk>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms/cpci690.c')
-rw-r--r-- | arch/ppc/platforms/cpci690.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/platforms/cpci690.c b/arch/ppc/platforms/cpci690.c index 55be550a0811..790475c22fd7 100644 --- a/arch/ppc/platforms/cpci690.c +++ b/arch/ppc/platforms/cpci690.c | |||
@@ -288,7 +288,7 @@ cpci690_fixup_mpsc_pdata(struct platform_device *pdev) | |||
288 | pdata->brg_clk_freq = cpci690_get_bus_freq(); | 288 | pdata->brg_clk_freq = cpci690_get_bus_freq(); |
289 | } | 289 | } |
290 | 290 | ||
291 | static int __init | 291 | static int |
292 | cpci690_platform_notify(struct device *dev) | 292 | cpci690_platform_notify(struct device *dev) |
293 | { | 293 | { |
294 | static struct { | 294 | static struct { |