diff options
author | Dirk Opfer <dirk@opfer-online.de> | 2006-03-31 05:31:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 15:18:57 -0500 |
commit | 6d0cf3e0480f6be9232854387794443d1a904d6d (patch) | |
tree | 2d787a372cb9bd5bf01e6197cabfd0061adfa513 /arch/arm/mach-pxa | |
parent | 6a0c51bfce5ae4058366017d861aea6564d25aee (diff) |
[PATCH] LED: add device support for tosa
Adds LED drivers for LEDs found on the Sharp Zaurus c6000 model (tosa).
Signed-off-by: Dirk Opfer <dirk@opfer-online.de>
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/tosa.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 66ec71756d0f..76c0e7f0a219 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c | |||
@@ -251,10 +251,19 @@ static struct platform_device tosakbd_device = { | |||
251 | .id = -1, | 251 | .id = -1, |
252 | }; | 252 | }; |
253 | 253 | ||
254 | /* | ||
255 | * Tosa LEDs | ||
256 | */ | ||
257 | static struct platform_device tosaled_device = { | ||
258 | .name = "tosa-led", | ||
259 | .id = -1, | ||
260 | }; | ||
261 | |||
254 | static struct platform_device *devices[] __initdata = { | 262 | static struct platform_device *devices[] __initdata = { |
255 | &tosascoop_device, | 263 | &tosascoop_device, |
256 | &tosascoop_jc_device, | 264 | &tosascoop_jc_device, |
257 | &tosakbd_device, | 265 | &tosakbd_device, |
266 | &tosaled_device, | ||
258 | }; | 267 | }; |
259 | 268 | ||
260 | static void __init tosa_init(void) | 269 | static void __init tosa_init(void) |