diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2007-11-07 14:56:46 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-11-07 14:56:46 +0900 |
commit | 9c88b6ba1c72a8bba30347b63f1531f2d9c2a309 (patch) | |
tree | 2ba3e1c534f4fe9f565b93806fd67426929d9fb2 /arch/sh/boards/se/7780 | |
parent | 694caef5e201d43151cc3a31b447e75b2f531de4 (diff) | |
download | kernel_goldelico_gta04-9c88b6ba1c72a8bba30347b63f1531f2d9c2a309.zip kernel_goldelico_gta04-9c88b6ba1c72a8bba30347b63f1531f2d9c2a309.tar.gz kernel_goldelico_gta04-9c88b6ba1c72a8bba30347b63f1531f2d9c2a309.tar.bz2 |
sh: Fix heartbeart on Solution Engine series
Access size to LED is not added on Solution Engine series.
LED doesn't work. Fixed this problem.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/se/7780')
-rw-r--r-- | arch/sh/boards/se/7780/setup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sh/boards/se/7780/setup.c b/arch/sh/boards/se/7780/setup.c index 76e53b2..0f08ab3 100644 --- a/arch/sh/boards/se/7780/setup.c +++ b/arch/sh/boards/se/7780/setup.c @@ -14,8 +14,13 @@ #include <asm/machvec.h> #include <asm/se7780.h> #include <asm/io.h> +#include <asm/heartbeat.h> /* Heartbeat */ +static struct heartbeat_data heartbeat_data = { + .regsize = 16, +}; + static struct resource heartbeat_resources[] = { [0] = { .start = PA_LED, @@ -27,6 +32,9 @@ static struct resource heartbeat_resources[] = { static struct platform_device heartbeat_device = { .name = "heartbeat", .id = -1, + .dev = { + .platform_data = &heartbeat_data, + }, .num_resources = ARRAY_SIZE(heartbeat_resources), .resource = heartbeat_resources, }; |