aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mfd
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-01-15 15:14:47 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-15 15:14:47 -0500
commit4b43ea2a7c763ab4a1fef69b7c7e2cb091fdea6c (patch)
tree65e5aeb861eb4cd737cf8e93fbc212d4fbe200f1 /include/linux/mfd
parent7aca74e7c1bbd2beed50d7d77065f26457e35b03 (diff)
parentd3bd4e0a5fd40ae61fe0dc19f2cfa88c88bb761c (diff)
Merge tag 'regulator-v4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
Pull regulator updates from Mark Brown: "Aside from a fix for a spurious warning (which caused more problems than it fixed in the fixing really) this is all driver updates, including new drivers for Dialog PV88060/90 and TI LM363x and TPS65086 devices. The qcom_smd driver has had PM8916 and PMA8084 support added" * tag 'regulator-v4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: (36 commits) regulator: core: remove some dead code regulator: core: use dev_to_rdev regulator: lp872x: Get rid of duplicate reference to DVS GPIO regulator: lp872x: Add missing of_match in regulators descriptions regulator: axp20x: Fix GPIO LDO enable value for AXP22x regulator: lp8788: constify regulator_ops structures regulator: wm8*: constify regulator_ops structures regulator: da9*: constify regulator_ops structures regulator: mt6311: Use REGCACHE_RBTREE regulator: tps65917/palmas: Add bypass ops for LDOs with bypass capability regulator: qcom-smd: Add support for PMA8084 regulator: qcom-smd: Add PM8916 support soc: qcom: documentation: Update SMD/RPM Docs regulator: pv88090: logical vs bitwise AND typo regulator: pv88090: Fix irq leak regulator: pv88090: new regulator driver regulator: wm831x-ldo: Use platform_register/unregister_drivers() regulator: wm831x-dcdc: Use platform_register/unregister_drivers() regulator: lp8788-ldo: Use platform_register/unregister_drivers() regulator: core: Fix nested locking of supplies ...
Diffstat (limited to 'include/linux/mfd')
-rw-r--r--include/linux/mfd/tps65218.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/mfd/tps65218.h b/include/linux/mfd/tps65218.h
index 2f9b593246ee..d58f3b5f585a 100644
--- a/include/linux/mfd/tps65218.h
+++ b/include/linux/mfd/tps65218.h
@@ -200,6 +200,8 @@ enum tps65218_regulator_id {
200 TPS65218_DCDC_4, 200 TPS65218_DCDC_4,
201 TPS65218_DCDC_5, 201 TPS65218_DCDC_5,
202 TPS65218_DCDC_6, 202 TPS65218_DCDC_6,
203 /* LS's */
204 TPS65218_LS_3,
203 /* LDOs */ 205 /* LDOs */
204 TPS65218_LDO_1, 206 TPS65218_LDO_1,
205}; 207};
@@ -210,8 +212,11 @@ enum tps65218_regulator_id {
210#define TPS65218_NUM_DCDC 6 212#define TPS65218_NUM_DCDC 6
211/* Number of LDO voltage regulators available */ 213/* Number of LDO voltage regulators available */
212#define TPS65218_NUM_LDO 1 214#define TPS65218_NUM_LDO 1
215/* Number of total LS current regulators available */
216#define TPS65218_NUM_LS 1
213/* Number of total regulators available */ 217/* Number of total regulators available */
214#define TPS65218_NUM_REGULATOR (TPS65218_NUM_DCDC + TPS65218_NUM_LDO) 218#define TPS65218_NUM_REGULATOR (TPS65218_NUM_DCDC + TPS65218_NUM_LDO \
219 + TPS65218_NUM_LS)
215 220
216/* Define the TPS65218 IRQ numbers */ 221/* Define the TPS65218 IRQ numbers */
217enum tps65218_irqs { 222enum tps65218_irqs {