diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-05-26 17:56:13 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-27 12:25:57 +0100 |
commit | ab3ca774a2b78e7b8c09a75b634fb872b96e675c (patch) | |
tree | ae9208765e8a3039979497e5edad22da19ed16f3 /drivers/regulator/pfuze100-regulator.c | |
parent | fe788b09552d1ea318d80d50962d3af69fbb0dbc (diff) | |
download | blackbird-obmc-linux-ab3ca774a2b78e7b8c09a75b634fb872b96e675c.tar.gz blackbird-obmc-linux-ab3ca774a2b78e7b8c09a75b634fb872b96e675c.zip |
regulator: pfuze100: Support enable/disable for fixed regulator
Current code has .enable_reg and .enable_mask settings, but the implementation
for corresponding callbacks are missing. Fix it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Tested-by: Robin Gong <b38343@freescale.com>
Acked-by: Robin Gong <b38343@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/pfuze100-regulator.c')
-rw-r--r-- | drivers/regulator/pfuze100-regulator.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c index 930eb137427d..c879dff597ee 100644 --- a/drivers/regulator/pfuze100-regulator.c +++ b/drivers/regulator/pfuze100-regulator.c @@ -125,6 +125,9 @@ static struct regulator_ops pfuze100_ldo_regulator_ops = { }; static struct regulator_ops pfuze100_fixed_regulator_ops = { + .enable = regulator_enable_regmap, + .disable = regulator_disable_regmap, + .is_enabled = regulator_is_enabled_regmap, .list_voltage = regulator_list_voltage_linear, }; |