]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: This patch enables I2C-2 support for 2430 SDP
authorSyed Mohammed Khasim <x0khasim@ti.com>
Thu, 7 Dec 2006 01:14:09 +0000 (17:14 -0800)
committerTony Lindgren <tony@atomide.com>
Mon, 5 Mar 2007 11:11:45 +0000 (03:11 -0800)
This patch enables I2C-2 support for 2430 SDP.

Signed-off-by: Syed Mohammed Khasim <x0khasim@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/devices.c

index cb5e77593272468cbfcc6e6a7981a7d9aa9e122d..bc42a7dd2af74eb1556c1f391a8efc1dc88eb182 100644 (file)
@@ -52,11 +52,13 @@ static struct platform_device omap_i2c_device2 = {
 static void omap_init_i2c(void)
 {
        /* REVISIT: Second I2C not in use on H4? */
-       if (machine_is_omap_h4() || machine_is_omap_2430sdp())
+       if (machine_is_omap_h4())
                return;
 
-       omap_cfg_reg(J15_24XX_I2C2_SCL);
-       omap_cfg_reg(H19_24XX_I2C2_SDA);
+       if (!cpu_is_omap2430()) {
+               omap_cfg_reg(J15_24XX_I2C2_SCL);
+               omap_cfg_reg(H19_24XX_I2C2_SDA);
+       }
        (void) platform_device_register(&omap_i2c_device2);
 }