From fe885fa2372b1d255974e71d5b7c51b1e9673835 Mon Sep 17 00:00:00 2001 From: Arnaud Patard Date: Wed, 18 Jul 2007 21:04:00 +0100 Subject: [ARM] 4491/1: em7210 rtc clock The commit d815461c7a73903d0a926b3cace6f69e144c54a3 in linus tree converts the rtc-rs5c372 driver to a "new style" i2c driver. Like commit c00593f6f816e5cfa6d193a2561ca77541f71424, this patch register the rtc i2c device for the em7210 board. Signed-off-by: Arnaud Patard Signed-off-by: Russell King --- arch/arm/mach-iop32x/em7210.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'arch/arm/mach-iop32x') diff --git a/arch/arm/mach-iop32x/em7210.c b/arch/arm/mach-iop32x/em7210.c index f0362053fdc..c947152f9a3 100644 --- a/arch/arm/mach-iop32x/em7210.c +++ b/arch/arm/mach-iop32x/em7210.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -44,6 +45,15 @@ static struct sys_timer em7210_timer = { .offset = iop_gettimeoffset, }; +/* + * EM7210 RTC + */ +static struct i2c_board_info __initdata em7210_i2c_devices[] = { + { + I2C_BOARD_INFO("rtc-rs5c372", 0x32), + .type = "rs5c372a", + }, +}; /* * EM7210 I/O @@ -187,6 +197,9 @@ static void __init em7210_init_machine(void) platform_device_register(&iop3xx_dma_0_channel); platform_device_register(&iop3xx_dma_1_channel); + i2c_register_board_info(0, em7210_i2c_devices, + ARRAY_SIZE(em7210_i2c_devices)); + pm_power_off = em7210_power_off; } -- cgit v1.2.3