diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-08-30 16:19:13 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-11-05 01:21:47 +0900 |
commit | 99f8bd8556ad829e042e66c1b25a35f1bcc38981 (patch) | |
tree | e678eee05f6091e3cfa19c5cae71eceed10c2526 /arch | |
parent | 566aad39df77211467078e0b3dcd62100f56b5e4 (diff) |
ARM: mach-shmobile: ag5evm needs CONFIG_I2C
ag5evm implements a backlight control, using an I2C controller, therefore
it needs CONFIG_I2C to fix this make failure
arch/arm/mach-shmobile/built-in.o: In function `lcd_on':
pfc-sh73a0.c:(.text+0x2334): undefined reference to `i2c_get_adapter'
pfc-sh73a0.c:(.text+0x2370): undefined reference to `i2c_transfer'
(ignore pfc-sh73a0.c) and to build successfully.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-shmobile/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index c1b45342e1f..0828fab2b65 100644 --- a/arch/arm/mach-shmobile/Kconfig +++ b/arch/arm/mach-shmobile/Kconfig @@ -26,6 +26,7 @@ config ARCH_SH73A0 select SH_CLK_CPG select ARCH_WANT_OPTIONAL_GPIOLIB select ARM_GIC + select I2C comment "SH-Mobile Board Type" |