aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2008-04-24 13:10:46 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-04-24 16:55:59 -0400
commite03e0590b2b29b62f0480524090e469baa13d5f5 (patch)
tree55633faaffe792df21b2af26909082dba8df974d /arch/arm
parentd3930614e68bdf83a120d904c039a64e9f75dba1 (diff)
[ARM] 5020/1: magician: remove __devinit marker from pasic3_leds_info
Platform data must not be marked with __devinit. Even __devinitdata would be wrong as the platform driver can be compiled as a module. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-pxa/magician.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c
index 1fa80c026c0f..badba064dc04 100644
--- a/arch/arm/mach-pxa/magician.c
+++ b/arch/arm/mach-pxa/magician.c
@@ -446,7 +446,7 @@ static struct pasic3_led pasic3_leds[] = {
446 446
447static struct platform_device pasic3; 447static struct platform_device pasic3;
448 448
449static struct pasic3_leds_machinfo __devinit pasic3_leds_info = { 449static struct pasic3_leds_machinfo pasic3_leds_info = {
450 .num_leds = ARRAY_SIZE(pasic3_leds), 450 .num_leds = ARRAY_SIZE(pasic3_leds),
451 .power_gpio = EGPIO_MAGICIAN_LED_POWER, 451 .power_gpio = EGPIO_MAGICIAN_LED_POWER,
452 .leds = pasic3_leds, 452 .leds = pasic3_leds,