diff options
author | kogiidena <kogiidena@eggplant.ddo.jp> | 2007-05-12 20:24:15 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-05-14 09:18:34 +0900 |
commit | ad47c12b3596269b975c21fba8f3cf09befdc1f2 (patch) | |
tree | d05aa49eff18c54a7fff7d35deaeb3f9109394ad /arch/sh | |
parent | 38c425f69c8d949620384f917e00652eaf390ec9 (diff) | |
download | kernel_samsung_espresso10-ad47c12b3596269b975c21fba8f3cf09befdc1f2.zip kernel_samsung_espresso10-ad47c12b3596269b975c21fba8f3cf09befdc1f2.tar.gz kernel_samsung_espresso10-ad47c12b3596269b975c21fba8f3cf09befdc1f2.tar.bz2 |
sh: landisk: rtc-rs5c313 support.
Add the rs5c313 platform device to the landisk setup code.
Signed-off-by: kogiidena <kogiidena@eggplant.ddo.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/landisk/setup.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sh/boards/landisk/setup.c b/arch/sh/boards/landisk/setup.c index 4058b4f..f953c74 100644 --- a/arch/sh/boards/landisk/setup.c +++ b/arch/sh/boards/landisk/setup.c @@ -44,8 +44,14 @@ static struct platform_device cf_ide_device = { }, }; +static struct platform_device rtc_device = { + .name = "rs5c313", + .id = -1, +}; + static struct platform_device *landisk_devices[] __initdata = { &cf_ide_device, + &rtc_device, }; static int __init landisk_devices_setup(void) |