diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2006-04-02 11:17:34 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-04-02 11:17:34 -0400 |
commit | 41658132e650c01529dd5cc5cea8b0055def1165 (patch) | |
tree | 4eb5b1cc9ed9e6834cb797e69d2e230275a662bf | |
parent | 272eb575eb3d5348fe0f0a97a22b5e603bd51d11 (diff) |
[ARM] 3450/1: ep93xx: use the ep93xx rtc driver
Patch from Lennert Buytenhek
Instantiate the recently merged ep93xx rtc driver in the ep93xx code.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index 2d892e4daa07..dcd417625389 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
@@ -424,6 +424,14 @@ static struct amba_device uart3_device = { | |||
424 | .periphid = 0x00041010, | 424 | .periphid = 0x00041010, |
425 | }; | 425 | }; |
426 | 426 | ||
427 | |||
428 | static struct platform_device ep93xx_rtc_device = { | ||
429 | .name = "ep93xx-rtc", | ||
430 | .id = -1, | ||
431 | .num_resources = 0, | ||
432 | }; | ||
433 | |||
434 | |||
427 | void __init ep93xx_init_devices(void) | 435 | void __init ep93xx_init_devices(void) |
428 | { | 436 | { |
429 | unsigned int v; | 437 | unsigned int v; |
@@ -439,4 +447,6 @@ void __init ep93xx_init_devices(void) | |||
439 | amba_device_register(&uart1_device, &iomem_resource); | 447 | amba_device_register(&uart1_device, &iomem_resource); |
440 | amba_device_register(&uart2_device, &iomem_resource); | 448 | amba_device_register(&uart2_device, &iomem_resource); |
441 | amba_device_register(&uart3_device, &iomem_resource); | 449 | amba_device_register(&uart3_device, &iomem_resource); |
450 | |||
451 | platform_device_register(&ep93xx_rtc_device); | ||
442 | } | 452 | } |