[PATCH] fsg-setup.c should use new style i2c model

From: Tomasz Chmielewski
Date: Fri Aug 08 2008 - 16:37:31 EST


RTC drivers were updated to the new style i2c model.

fsg-setup.c for Freecom FSG-3 was to date not updated to use it.
Because of this, it is not possible to use the RTC.

This tiny patch updates arch/arm/mach-ixp4xx/fsg-setup.c to use the correct device.

It also removes an unused variable which was issuing a compilation warning.


Tested-by: Tomasz Chmielewski <mangoo@xxxxxxxx>
Signed-off-by: Tomasz Chmielewski <mangoo@xxxxxxxx>

diff --git a/arch/arm/mach-ixp4xx/fsg-setup.c b/arch/arm/mach-ixp4xx/fsg-setup.c
index 0db3a90..0e0a234 100644
--- a/arch/arm/mach-ixp4xx/fsg-setup.c
+++ b/arch/arm/mach-ixp4xx/fsg-setup.c
@@ -64,7 +64,7 @@ static struct platform_device fsg_i2c_gpio = {

static struct i2c_board_info __initdata fsg_i2c_board_info [] = {
{
- I2C_BOARD_INFO("rtc-isl1208", 0x6f),
+ I2C_BOARD_INFO("isl1208", 0x6f),
},
};

@@ -179,7 +179,6 @@ static void __init fsg_init(void)
{
DECLARE_MAC_BUF(mac_buf);
uint8_t __iomem *f;
- int i;

ixp4xx_sys_init();

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/