regulator: core: Say what unsupportable voltage constraints are

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Mark Brown 2012-11-27 18:48:56 +00:00
Родитель dd8004af2b
Коммит fff15bef48
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -883,7 +883,9 @@ static int machine_constraints_voltage(struct regulator_dev *rdev,
/* final: [min_uV..max_uV] valid iff constraints valid */ /* final: [min_uV..max_uV] valid iff constraints valid */
if (max_uV < min_uV) { if (max_uV < min_uV) {
rdev_err(rdev, "unsupportable voltage constraints\n"); rdev_err(rdev,
"unsupportable voltage constraints %u-%uuV\n",
min_uV, max_uV);
return -EINVAL; return -EINVAL;
} }