Skip to content

Commit

Permalink
omap: Fix undefined reference to omap2_i2c_mux_pins
Browse files Browse the repository at this point in the history
In some cases we can get error function `omap2_i2c_add_bus':
arch/arm/plat-omap/i2c.c:136: undefined reference to `omap2_i2c_mux_pins'
arch/arm/plat-omap/i2c.c:141: undefined reference to `omap_hwmod_lookup'
arch/arm/plat-omap/i2c.c:157: undefined reference to `omap_device_build'

Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Tony Lindgren committed Dec 8, 2010
1 parent 00b4ade commit be40f7a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions arch/arm/plat-omap/i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ static struct omap_device_pm_latency omap_i2c_latency[] = {
},
};

#ifdef CONFIG_ARCH_OMAP2PLUS
static inline int omap2_i2c_add_bus(int bus_id)
{
int l;
Expand Down Expand Up @@ -166,6 +167,12 @@ static inline int omap2_i2c_add_bus(int bus_id)

return PTR_ERR(od);
}
#else
static inline int omap2_i2c_add_bus(int bus_id)
{
return 0;
}
#endif

static int __init omap_i2c_add_bus(int bus_id)
{
Expand Down

0 comments on commit be40f7a

Please sign in to comment.