aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/regulator/da9211-regulator.c
diff options
context:
space:
mode:
authorJames Ban <james.ban.opensource@diasemi.com>2014-09-29 16:59:20 +0900
committerMark Brown <broonie@kernel.org>2014-09-30 13:46:46 +0100
commit4e7089f3f7ab3edf177bbdb84107aff3193e855e (patch)
treec6b52dfee1b0aa21199af0dd8efce647d31f4f07 /drivers/regulator/da9211-regulator.c
parentLinux 3.17-rc1 (diff)
downloadwireguard-linux-4e7089f3f7ab3edf177bbdb84107aff3193e855e.tar.xz
wireguard-linux-4e7089f3f7ab3edf177bbdb84107aff3193e855e.zip
regulator: da9211: Fix a bug in update of mask bit
This is a patch for fixing a bug about mask bit operation. Signed-off-by: James Ban <james.ban.opensource@diasemi.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/da9211-regulator.c')
-rw-r--r--drivers/regulator/da9211-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9211-regulator.c b/drivers/regulator/da9211-regulator.c
index 1482adafa1ad..05f879a5d24e 100644
--- a/drivers/regulator/da9211-regulator.c
+++ b/drivers/regulator/da9211-regulator.c
@@ -282,7 +282,7 @@ static int da9211_regulator_init(struct da9211 *chip)
if (chip->chip_irq != 0) {
ret = regmap_update_bits(chip->regmap,
- DA9211_REG_MASK_B, DA9211_M_OV_CURR_A << i, 1);
+ DA9211_REG_MASK_B, DA9211_M_OV_CURR_A << i, 0);
if (ret < 0) {
dev_err(chip->dev,
"Failed to update mask reg: %d\n", ret);