From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Axel Lin <axel.lin@ingics.com>
Cc: Mark Brown <broonie@kernel.org>,
Sachin Kamat <sachin.kamat@linaro.org>,
Sangbeom Kim <sbkim73@samsung.com>,
Liam Girdwood <lgirdwood@gmail.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] regulator: s2mps11: Don't check enable_shift before setting enable ramp rate
Date: Tue, 01 Apr 2014 09:02:04 +0200 [thread overview]
Message-ID: <1396335724.8272.0.camel@AMDC1943> (raw)
In-Reply-To: <1395389784.29259.2.camel@phoenix>
On Fri, 2014-03-21 at 16:16 +0800, Axel Lin wrote:
> Current code misses updating the register when enable_shift is 0.
> e.g. S2MPS11_BUCK9_RAMP_SHIFT and S2MPS11_BUCK6_RAMP_EN_SHIFT are 0.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> drivers/regulator/s2mps11.c | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-)
Looks good.
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Best regards,
Krzysztof
> diff --git a/drivers/regulator/s2mps11.c b/drivers/regulator/s2mps11.c
> index 68fd547..e713c16 100644
> --- a/drivers/regulator/s2mps11.c
> +++ b/drivers/regulator/s2mps11.c
> @@ -202,13 +202,11 @@ static int s2mps11_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
> if (!ramp_enable)
> goto ramp_disable;
>
> - if (enable_shift) {
> - ret = regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,
> - 1 << enable_shift, 1 << enable_shift);
> - if (ret) {
> - dev_err(&rdev->dev, "failed to enable ramp rate\n");
> - return ret;
> - }
> + ret = regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,
> + 1 << enable_shift, 1 << enable_shift);
> + if (ret) {
> + dev_err(&rdev->dev, "failed to enable ramp rate\n");
> + return ret;
> }
>
> ramp_val = get_ramp_delay(ramp_delay);
next prev parent reply other threads:[~2014-04-01 7:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-21 8:15 [PATCH 1/2] regulator: s2mpa01: Don't check enable_shift before setting enable ramp rate Axel Lin
2014-03-21 8:16 ` [PATCH 2/2] regulator: s2mps11: " Axel Lin
2014-04-01 7:02 ` Krzysztof Kozlowski [this message]
2014-04-02 19:54 ` Mark Brown
2014-04-01 4:03 ` [PATCH 1/2] regulator: s2mpa01: " Axel Lin
2014-04-01 6:27 ` Sachin Kamat
2014-04-02 19:52 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1396335724.8272.0.camel@AMDC1943 \
--to=k.kozlowski@samsung.com \
--cc=axel.lin@ingics.com \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sachin.kamat@linaro.org \
--cc=sbkim73@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox