aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-05-28 15:33:51 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-28 15:33:51 -0400
commit55f08e1baa3ef11c952b626dbc7ef9e3e8332a63 (patch)
tree4eb5f0bf3fd8d26ead9bd92ed8c5214cecf348ea
parentd02bf062fbb5e714d84ecefd05106062b9a45159 (diff)
parent66c500ff36d74c6669ad260deda4ce8125b55304 (diff)
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6: mfd: Fix build breakage caused by tps65910 gpio directory move mfd: Use mfd cell platform_data for db8500-prcmu cells platform bits
-rw-r--r--drivers/mfd/Kconfig2
-rw-r--r--drivers/mfd/db8500-prcmu.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index b6c267724e14..0f09c057e796 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -721,7 +721,7 @@ config MFD_PM8XXX_IRQ
721 721
722config MFD_TPS65910 722config MFD_TPS65910
723 bool "TPS65910 Power Management chip" 723 bool "TPS65910 Power Management chip"
724 depends on I2C=y 724 depends on I2C=y && GPIOLIB
725 select MFD_CORE 725 select MFD_CORE
726 select GPIO_TPS65910 726 select GPIO_TPS65910
727 help 727 help
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c
index e63782107e2f..02a15d7cb3b0 100644
--- a/drivers/mfd/db8500-prcmu.c
+++ b/drivers/mfd/db8500-prcmu.c
@@ -2005,7 +2005,8 @@ static struct regulator_init_data db8500_regulators[DB8500_NUM_REGULATORS] = {
2005static struct mfd_cell db8500_prcmu_devs[] = { 2005static struct mfd_cell db8500_prcmu_devs[] = {
2006 { 2006 {
2007 .name = "db8500-prcmu-regulators", 2007 .name = "db8500-prcmu-regulators",
2008 .mfd_data = &db8500_regulators, 2008 .platform_data = &db8500_regulators,
2009 .pdata_size = sizeof(db8500_regulators),
2009 }, 2010 },
2010 { 2011 {
2011 .name = "cpufreq-u8500", 2012 .name = "cpufreq-u8500",