Commit f290f701 authored by Syed Mohammed Khasim's avatar Syed Mohammed Khasim Committed by Tony Lindgren

ARM: OMAP: This patch enables I2C-2 support for 2430 SDP

This patch enables I2C-2 support for 2430 SDP.
Signed-off-by: default avatarSyed Mohammed Khasim <x0khasim@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 29035288
...@@ -52,11 +52,13 @@ static struct platform_device omap_i2c_device2 = { ...@@ -52,11 +52,13 @@ static struct platform_device omap_i2c_device2 = {
static void omap_init_i2c(void) static void omap_init_i2c(void)
{ {
/* REVISIT: Second I2C not in use on H4? */ /* REVISIT: Second I2C not in use on H4? */
if (machine_is_omap_h4() || machine_is_omap_2430sdp()) if (machine_is_omap_h4())
return; return;
omap_cfg_reg(J15_24XX_I2C2_SCL); if (!cpu_is_omap2430()) {
omap_cfg_reg(H19_24XX_I2C2_SDA); omap_cfg_reg(J15_24XX_I2C2_SCL);
omap_cfg_reg(H19_24XX_I2C2_SDA);
}
(void) platform_device_register(&omap_i2c_device2); (void) platform_device_register(&omap_i2c_device2);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment