diff options
author | Chuansheng Liu <chuansheng.liu@intel.com> | 2012-12-24 22:19:56 +0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-16 12:36:22 -0800 |
commit | fbfc23ef905e41cbf621031a3d560a55a010dd54 (patch) | |
tree | 3593658adf526bb3a786e0e590424b91154390af | |
parent | 30a4840a4cd74301058a1f054f335185f978ace8 (diff) | |
download | linux-3.10-fbfc23ef905e41cbf621031a3d560a55a010dd54.tar.gz linux-3.10-fbfc23ef905e41cbf621031a3d560a55a010dd54.tar.bz2 linux-3.10-fbfc23ef905e41cbf621031a3d560a55a010dd54.zip |
mfd, TWL4030: TWL4030 need select REGMAP_I2C
Fix the build error:
drivers/built-in.o: In function `twl_probe':
drivers/mfd/twl-core.c:1256: undefined reference to `devm_regmap_init_i2c'
make: *** [vmlinux] Error 1
Signed-off-by: liu chuansheng <chuansheng.liu@intel.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
[ Samuel is busy, taking it directly - Linus ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/mfd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 1c0abd4dfc4..47ad4e27087 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -292,6 +292,7 @@ config TWL4030_CORE bool "Texas Instruments TWL4030/TWL5030/TWL6030/TPS659x0 Support" depends on I2C=y && GENERIC_HARDIRQS select IRQ_DOMAIN + select REGMAP_I2C help Say yes here if you have TWL4030 / TWL6030 family chip on your board. This core driver provides register access and IRQ handling |