diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2013-05-30 15:55:09 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-07 12:53:22 -0700 |
commit | 032e6d6cfe7dfa4a36b228755e8c5e4d9fd81107 (patch) | |
tree | fad2497b878083fcced8b7e4be8026c6aae90ed0 | |
parent | c534bfb76524145e32a5066ca73b6836ce744c38 (diff) | |
download | lwn-032e6d6cfe7dfa4a36b228755e8c5e4d9fd81107.tar.gz lwn-032e6d6cfe7dfa4a36b228755e8c5e4d9fd81107.zip |
regulator: palmas: Fix "enable_reg" to point to the correct reg for SMPS10
commit f232168df0c7e7414b70ac5d8fed83086d441c0b upstream.
regulator_enable_regmap() uses enable_reg to enable the regulator.
But enable_reg for smps10 points to SMPS10_STATUS which is a
read-only register. Fixed the same by having enable_reg
set to SMPS10_CTRL.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/regulator/palmas-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index 39cf14606784..149fad495ca8 100644 --- a/drivers/regulator/palmas-regulator.c +++ b/drivers/regulator/palmas-regulator.c @@ -677,7 +677,7 @@ static int palmas_probe(struct platform_device *pdev) pmic->desc[id].vsel_mask = SMPS10_VSEL; pmic->desc[id].enable_reg = PALMAS_BASE_TO_REG(PALMAS_SMPS_BASE, - PALMAS_SMPS10_STATUS); + PALMAS_SMPS10_CTRL); pmic->desc[id].enable_mask = SMPS10_BOOST_EN; pmic->desc[id].min_uV = 3750000; pmic->desc[id].uV_step = 1250000; |