dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Mark Brown 2011-07-21 15:07:37 +01:00 committed by Liam Girdwood
parent 1a6958e79f
commit 54abd335fd
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ static int regulator_check_voltage(struct regulator_dev *rdev,
if (*min_uV > *max_uV) {
rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
min_uV, max_uV);
*min_uV, *max_uV);
return -EINVAL;
}
@ -210,7 +210,7 @@ static int regulator_check_current_limit(struct regulator_dev *rdev,
if (*min_uA > *max_uA) {
rdev_err(rdev, "unsupportable current range: %d-%duA\n",
min_uA, max_uA);
*min_uA, *max_uA);
return -EINVAL;
}