[<prev] [next>] [day] [month] [year] [list]
Message-Id: <E1acpp2-0007Bg-C8@finisterre>
Date: Mon, 07 Mar 2016 14:43:20 +0700
From: Mark Brown <broonie@...nel.org>
To: James Ban <James.Ban.opensource@...semi.com>,
Mark Brown <broonie@...nel.org>
Cc: linux-kernel@...r.kernel.org
Subject: Applied "regulator: pv88090: fix incorrect clear of event register" to the regulator tree
The patch
regulator: pv88090: fix incorrect clear of event register
has been applied to the regulator tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 623f7b933968b159081559baca56d98ed4b60e33 Mon Sep 17 00:00:00 2001
From: James Ban <James.Ban.opensource@...semi.com>
Date: Mon, 7 Mar 2016 16:08:20 +0900
Subject: [PATCH] regulator: pv88090: fix incorrect clear of event register
This is a patch to fix incorrect clear of event register.
Signed-off-by: James Ban <James.Ban.opensource@...semi.com>
Signed-off-by: Mark Brown <broonie@...nel.org>
---
drivers/regulator/pv88090-regulator.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/regulator/pv88090-regulator.c b/drivers/regulator/pv88090-regulator.c
index ac15f31b5fe0..0057c6740d6f 100644
--- a/drivers/regulator/pv88090-regulator.c
+++ b/drivers/regulator/pv88090-regulator.c
@@ -283,8 +283,8 @@ static irqreturn_t pv88090_irq_handler(int irq, void *data)
}
}
- err = regmap_update_bits(chip->regmap, PV88090_REG_EVENT_A,
- PV88090_E_VDD_FLT, PV88090_E_VDD_FLT);
+ err = regmap_write(chip->regmap, PV88090_REG_EVENT_A,
+ PV88090_E_VDD_FLT);
if (err < 0)
goto error_i2c;
@@ -300,8 +300,8 @@ static irqreturn_t pv88090_irq_handler(int irq, void *data)
}
}
- err = regmap_update_bits(chip->regmap, PV88090_REG_EVENT_A,
- PV88090_E_OVER_TEMP, PV88090_E_OVER_TEMP);
+ err = regmap_write(chip->regmap, PV88090_REG_EVENT_A,
+ PV88090_E_OVER_TEMP);
if (err < 0)
goto error_i2c;
--
2.7.0
Powered by blists - more mailing lists