aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/landisk
diff options
context:
space:
mode:
authorkogiidena <kogiidena@eggplant.ddo.jp>2007-05-12 20:24:15 +0900
committerPaul Mundt <lethal@linux-sh.org>2007-05-14 09:18:34 +0900
commitad47c12b3596269b975c21fba8f3cf09befdc1f2 (patch)
treed05aa49eff18c54a7fff7d35deaeb3f9109394ad /arch/sh/boards/landisk
parentsh: Kill off pmb slab cache destructor. (diff)
downloadlinux-dev-ad47c12b3596269b975c21fba8f3cf09befdc1f2.tar.xz
linux-dev-ad47c12b3596269b975c21fba8f3cf09befdc1f2.zip
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/boards/landisk')
-rw-r--r--arch/sh/boards/landisk/setup.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sh/boards/landisk/setup.c b/arch/sh/boards/landisk/setup.c
index 4058b4f50d44..f953c7427769 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)