diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-10-08 09:06:27 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-08 11:45:21 +0100 |
commit | cc37038fe344e6000d30879c27521ee47c534fc8 (patch) | |
tree | d495c550bb9ae97dcf7062373c4c7d315be19780 | |
parent | 2e67f32296e3f1841793e36ce796f1497614c687 (diff) | |
download | linux-cc37038fe344e6000d30879c27521ee47c534fc8.tar.bz2 |
regulator: rk808: Fix warning message in rk817_set_ramp_delay
The default in rk817_set_ramp_delay is 25MV rather than 10MV.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Link: https://lore.kernel.org/r/20191008010628.8513-2-axel.lin@ingics.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/rk808-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c index eda056fce65f..d0d1b868b0cd 100644 --- a/drivers/regulator/rk808-regulator.c +++ b/drivers/regulator/rk808-regulator.c @@ -388,7 +388,7 @@ static int rk817_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay) break; default: dev_warn(&rdev->dev, - "%s ramp_delay: %d not supported, setting 10000\n", + "%s ramp_delay: %d not supported, setting 25000\n", rdev->desc->name, ramp_delay); } |