diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2010-12-20 15:00:17 -0800 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2010-12-20 15:13:49 -0800 |
commit | 7c63dedcc52c8c1253b1deec387102ef788ed0b4 (patch) | |
tree | d510da63c81f6422a8dd5af707ddb188befa1b5f /arch/arm | |
parent | 50bc0ef42c76879f5d68a88c7063603dc0c9789b (diff) | |
download | blackbird-op-linux-7c63dedcc52c8c1253b1deec387102ef788ed0b4.tar.gz blackbird-op-linux-7c63dedcc52c8c1253b1deec387102ef788ed0b4.zip |
msm: qsd8x50: Platform data isn't init data
Remove the SMC91x platform and resource data from initdata. These
will continue to be accessed after init, and must remain available.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-msm/board-qsd8x50.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/board-qsd8x50.c b/arch/arm/mach-msm/board-qsd8x50.c index ed2af4ad97ed..39925c1a819d 100644 --- a/arch/arm/mach-msm/board-qsd8x50.c +++ b/arch/arm/mach-msm/board-qsd8x50.c @@ -42,7 +42,7 @@ static const unsigned qsd8x50_surf_smc91x_gpio __initdata = 156; * at run-time: they vary from board to board, and the true * configuration won't be known until boot. */ -static struct resource smc91x_resources[] __initdata = { +static struct resource smc91x_resources[] = { [0] = { .flags = IORESOURCE_MEM, }, @@ -51,7 +51,7 @@ static struct resource smc91x_resources[] __initdata = { }, }; -static struct platform_device smc91x_device __initdata = { +static struct platform_device smc91x_device = { .name = "smc91x", .id = 0, .num_resources = ARRAY_SIZE(smc91x_resources), |