|
@@ -1422,11 +1422,10 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
|
|
return ret;
|
|
return ret;
|
|
|
|
|
|
/* Cascade always-on state to supply */
|
|
/* Cascade always-on state to supply */
|
|
- if (_regulator_is_enabled(rdev)) {
|
|
|
|
|
|
+ if (_regulator_is_enabled(rdev) && rdev->supply) {
|
|
ret = regulator_enable(rdev->supply);
|
|
ret = regulator_enable(rdev->supply);
|
|
if (ret < 0) {
|
|
if (ret < 0) {
|
|
- if (rdev->supply)
|
|
|
|
- _regulator_put(rdev->supply);
|
|
|
|
|
|
+ _regulator_put(rdev->supply);
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
}
|