diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-26 19:37:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-26 19:37:37 -0400 |
commit | a483ab1dddf86a0e8924e94cf838eed602602b39 (patch) | |
tree | 3cfd2da7cfec32f5c1bc54dfb1d491bfa07d444f /drivers | |
parent | eba966a4e780199e31e8fd1d21bc9d187b1c9eaf (diff) | |
parent | 9c366452e0b2df06f3ce0aabc6a53c94c595cd00 (diff) |
Merge branch 'for-linus' of git://git.o-hand.com/linux-mfd
* 'for-linus' of git://git.o-hand.com/linux-mfd:
mfd: Make WM8400 depend on I2C until SPI is submitted
mfd: add missing Kconfig entry for da903x
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mfd/Kconfig | 12 | ||||
-rw-r--r-- | drivers/mfd/Makefile | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 5a79d2d4cdae..b550267c8d5e 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
@@ -103,8 +103,20 @@ config MFD_TC6393XB | |||
103 | help | 103 | help |
104 | Support for Toshiba Mobile IO Controller TC6393XB | 104 | Support for Toshiba Mobile IO Controller TC6393XB |
105 | 105 | ||
106 | config PMIC_DA903X | ||
107 | bool "Dialog Semiconductor DA9030/DA9034 PMIC Support" | ||
108 | depends on I2C=y | ||
109 | help | ||
110 | Say yes here to support for Dialog Semiconductor DA9030 (a.k.a | ||
111 | ARAVA) and DA9034 (a.k.a MICCO), these are Power Management IC | ||
112 | usually found on PXA processors-based platforms. This includes | ||
113 | the I2C driver and the core APIs _only_, you have to select | ||
114 | individual components like LCD backlight, voltage regulators, | ||
115 | LEDs and battery-charger under the corresponding menus. | ||
116 | |||
106 | config MFD_WM8400 | 117 | config MFD_WM8400 |
107 | tristate "Support Wolfson Microelectronics WM8400" | 118 | tristate "Support Wolfson Microelectronics WM8400" |
119 | depends on I2C | ||
108 | help | 120 | help |
109 | Support for the Wolfson Microelecronics WM8400 PMIC and audio | 121 | Support for the Wolfson Microelecronics WM8400 PMIC and audio |
110 | CODEC. This driver adds provides common support for accessing | 122 | CODEC. This driver adds provides common support for accessing |
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 0acefe8aff87..9a5ad8af9116 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile | |||
@@ -30,3 +30,5 @@ ifeq ($(CONFIG_SA1100_ASSABET),y) | |||
30 | obj-$(CONFIG_MCP_UCB1200) += ucb1x00-assabet.o | 30 | obj-$(CONFIG_MCP_UCB1200) += ucb1x00-assabet.o |
31 | endif | 31 | endif |
32 | obj-$(CONFIG_UCB1400_CORE) += ucb1400_core.o | 32 | obj-$(CONFIG_UCB1400_CORE) += ucb1400_core.o |
33 | |||
34 | obj-$(CONFIG_PMIC_DA903X) += da903x.o \ No newline at end of file | ||