regulator: Check for constraints in regulator_init_complete()
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
Родитель
b39480ac37
Коммит
f25e0b4fcc
|
@ -2409,14 +2409,14 @@ static int __init regulator_init_complete(void)
|
|||
ops = rdev->desc->ops;
|
||||
c = rdev->constraints;
|
||||
|
||||
if (c->name)
|
||||
if (c && c->name)
|
||||
name = c->name;
|
||||
else if (rdev->desc->name)
|
||||
name = rdev->desc->name;
|
||||
else
|
||||
name = "regulator";
|
||||
|
||||
if (!ops->disable || c->always_on)
|
||||
if (!ops->disable || (c && c->always_on))
|
||||
continue;
|
||||
|
||||
mutex_lock(&rdev->mutex);
|
||||
|
|
Загрузка…
Ссылка в новой задаче