diff options
author | Tony Lindgren <tony@atomide.com> | 2012-09-05 04:43:29 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-09-13 05:06:29 +0400 |
commit | 936e0f2fd64efbb28444c916814b6232dddac03b (patch) | |
tree | 75a7a4cd9c3bccef7692fea88dd4faa70ca3e308 /arch/arm/plat-omap/i2c.c | |
parent | 9ee073176808bba3039dabeaf6553ecdb9d7f765 (diff) | |
download | linux-936e0f2fd64efbb28444c916814b6232dddac03b.tar.xz |
ARM: OMAP1: Define OMAP1_INT_I2C locally
This is needed to start removing hardcoded IRQs for omap2+.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap/i2c.c')
-rw-r--r-- | arch/arm/plat-omap/i2c.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/i2c.c b/arch/arm/plat-omap/i2c.c index db071bc71c4d..40bc06a7ac43 100644 --- a/arch/arm/plat-omap/i2c.c +++ b/arch/arm/plat-omap/i2c.c @@ -39,6 +39,7 @@ #define OMAP_I2C_SIZE 0x3f #define OMAP1_I2C_BASE 0xfffb3800 +#define OMAP1_INT_I2C (32 + 4) static const char name[] = "omap_i2c"; @@ -105,7 +106,7 @@ static inline int omap1_i2c_add_bus(int bus_id) res = pdev->resource; res[0].start = OMAP1_I2C_BASE; res[0].end = res[0].start + OMAP_I2C_SIZE; - res[1].start = INT_I2C; + res[1].start = OMAP1_INT_I2C; pdata = &i2c_pdata[bus_id - 1]; /* all OMAP1 have IP version 1 register set */ |