diff options
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/core.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 8a5d0ae191b3..a48cf582dcd0 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
@@ -1273,15 +1273,17 @@ static int _regulator_enable(struct regulator_dev *rdev) | |||
1273 | { | 1273 | { |
1274 | int ret, delay; | 1274 | int ret, delay; |
1275 | 1275 | ||
1276 | /* do we need to enable the supply regulator first */ | 1276 | if (rdev->use_count == 0) { |
1277 | if (rdev->supply) { | 1277 | /* do we need to enable the supply regulator first */ |
1278 | mutex_lock(&rdev->supply->mutex); | 1278 | if (rdev->supply) { |
1279 | ret = _regulator_enable(rdev->supply); | 1279 | mutex_lock(&rdev->supply->mutex); |
1280 | mutex_unlock(&rdev->supply->mutex); | 1280 | ret = _regulator_enable(rdev->supply); |
1281 | if (ret < 0) { | 1281 | mutex_unlock(&rdev->supply->mutex); |
1282 | printk(KERN_ERR "%s: failed to enable %s: %d\n", | 1282 | if (ret < 0) { |
1283 | __func__, rdev_get_name(rdev), ret); | 1283 | printk(KERN_ERR "%s: failed to enable %s: %d\n", |
1284 | return ret; | 1284 | __func__, rdev_get_name(rdev), ret); |
1285 | return ret; | ||
1286 | } | ||
1285 | } | 1287 | } |
1286 | } | 1288 | } |
1287 | 1289 | ||