diff options
author | Axel Lin <axel.lin@ingics.com> | 2012-11-22 09:47:08 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-22 11:07:10 +0900 |
commit | e05f70c2686004df9794a3ec426d16009062b749 (patch) | |
tree | 3da85072853cc423e214be369feced6a68a0c5f9 /drivers/regulator/max8973-regulator.c | |
parent | 5928f5389664fffa295c39bbe23de73069124451 (diff) |
regulator: max8973: Fix callback setting for max8973_dcdc_ops.enable
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/max8973-regulator.c')
-rw-r--r-- | drivers/regulator/max8973-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/max8973-regulator.c b/drivers/regulator/max8973-regulator.c index e6328f935767..140ff9d137ec 100644 --- a/drivers/regulator/max8973-regulator.c +++ b/drivers/regulator/max8973-regulator.c @@ -401,7 +401,7 @@ static int __devinit max8973_probe(struct i2c_client *client, if (pdata->enable_ext_control) { max->desc.enable_reg = MAX8973_VOUT; max->desc.enable_mask = MAX8973_VOUT_ENABLE; - max8973_dcdc_ops.enable = regulator_is_enabled_regmap; + max8973_dcdc_ops.enable = regulator_enable_regmap; max8973_dcdc_ops.disable = regulator_disable_regmap; max8973_dcdc_ops.is_enabled = regulator_is_enabled_regmap; } |