diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-21 10:07:37 -0400 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2011-07-22 06:46:57 -0400 |
commit | 54abd335fda86d305845f9e62b4bc0997386eb66 (patch) | |
tree | a8e90ea9a296097ad793f35d9ed681cdbc69524d /drivers/regulator | |
parent | 1a6958e79f9e191c89fe0c13f7452b0bd8097050 (diff) |
regulator: Fix argument format type errors in error prints
We need to dereference the pointers to print their values.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index a01954456752..d8e6a429e8ba 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
@@ -153,7 +153,7 @@ static int regulator_check_voltage(struct regulator_dev *rdev, | |||
153 | 153 | ||
154 | if (*min_uV > *max_uV) { | 154 | if (*min_uV > *max_uV) { |
155 | rdev_err(rdev, "unsupportable voltage range: %d-%duV\n", | 155 | rdev_err(rdev, "unsupportable voltage range: %d-%duV\n", |
156 | min_uV, max_uV); | 156 | *min_uV, *max_uV); |
157 | return -EINVAL; | 157 | return -EINVAL; |
158 | } | 158 | } |
159 | 159 | ||
@@ -210,7 +210,7 @@ static int regulator_check_current_limit(struct regulator_dev *rdev, | |||
210 | 210 | ||
211 | if (*min_uA > *max_uA) { | 211 | if (*min_uA > *max_uA) { |
212 | rdev_err(rdev, "unsupportable current range: %d-%duA\n", | 212 | rdev_err(rdev, "unsupportable current range: %d-%duA\n", |
213 | min_uA, max_uA); | 213 | *min_uA, *max_uA); |
214 | return -EINVAL; | 214 | return -EINVAL; |
215 | } | 215 | } |
216 | 216 | ||