diff options
author | Sean Cross <xobs@kosagi.com> | 2014-05-26 16:45:40 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-26 16:45:16 +0100 |
commit | a6dcf9782f99a0d844b4d06f65cc990468424068 (patch) | |
tree | 7821508e8b86d6c47bf2c3810576b8f02f3baa3c /drivers/regulator | |
parent | c9eaa447e77efe77b7fa4c953bd62de8297fd6c5 (diff) | |
download | op-kernel-dev-a6dcf9782f99a0d844b4d06f65cc990468424068.zip op-kernel-dev-a6dcf9782f99a0d844b4d06f65cc990468424068.tar.gz |
regulator: pfuze100: Support SWB enable/disable
The SWB regulators have the ability to be turned on and off. Add
enable/disable support for these regulators.
Signed-off-by: Sean Cross <xobs@kosagi.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/pfuze100-regulator.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c index 67e678c..b20304b 100644 --- a/drivers/regulator/pfuze100-regulator.c +++ b/drivers/regulator/pfuze100-regulator.c @@ -137,6 +137,8 @@ static struct regulator_ops pfuze100_sw_regulator_ops = { }; static struct regulator_ops pfuze100_swb_regulator_ops = { + .enable = regulator_enable_regmap, + .disable = regulator_disable_regmap, .list_voltage = regulator_list_voltage_table, .map_voltage = regulator_map_voltage_ascend, .set_voltage_sel = regulator_set_voltage_sel_regmap, @@ -189,6 +191,8 @@ static struct regulator_ops pfuze100_swb_regulator_ops = { .volt_table = voltages, \ .vsel_reg = (base), \ .vsel_mask = (mask), \ + .enable_reg = (base), \ + .enable_mask = 0x48, \ }, \ } |