Commit bbbe1212 authored by Adrian Cox's avatar Adrian Cox Committed by Paul Mackerras

[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: default avatarAdrian Cox <adrian@humboldt.co.uk>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 7e5b5938
......@@ -288,7 +288,7 @@ cpci690_fixup_mpsc_pdata(struct platform_device *pdev)
pdata->brg_clk_freq = cpci690_get_bus_freq();
}
static int __init
static int
cpci690_platform_notify(struct device *dev)
{
static struct {
......
......@@ -414,7 +414,7 @@ ev64260_fixup_mpsc_pdata(struct platform_device *pdev)
return;
}
static int __init
static int
ev64260_platform_notify(struct device *dev)
{
static struct {
......
......@@ -298,7 +298,7 @@ ev64360_fixup_eth_pdata(struct platform_device *pdev)
}
#endif
static int __init
static int
ev64360_platform_notify(struct device *dev)
{
static struct {
......
......@@ -351,7 +351,7 @@ static void __init hdpu_fixup_cpustate_pdata(struct platform_device *pd)
}
#endif
static int __init hdpu_platform_notify(struct device *dev)
static int hdpu_platform_notify(struct device *dev)
{
static struct {
char *bus_id;
......
......@@ -596,7 +596,7 @@ katana_fixup_mv64xxx_pdata(struct platform_device *pdev)
}
#endif
static int __init
static int
katana_platform_notify(struct device *dev)
{
static struct {
......
......@@ -709,7 +709,7 @@ ppc7d_fixup_i2c_pdata(struct platform_device *pdev)
}
#endif
static int __init ppc7d_platform_notify(struct device *dev)
static int ppc7d_platform_notify(struct device *dev)
{
static struct {
char *bus_id;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment