Skip to content

Commit

Permalink
regulator: lock supply in regulator enable
Browse files Browse the repository at this point in the history
This patch add locks around regulator supply enable.

Signed-off-by: Mattias Wallin <mattias.wallin@stericsson.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
  • Loading branch information
Mattias Wallin authored and Liam Girdwood committed Nov 30, 2010
1 parent 7727da2 commit 3aa713e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/regulator/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,9 @@ static int _regulator_enable(struct regulator_dev *rdev)

/* do we need to enable the supply regulator first */
if (rdev->supply) {
mutex_lock(&rdev->supply->mutex);
ret = _regulator_enable(rdev->supply);
mutex_unlock(&rdev->supply->mutex);
if (ret < 0) {
printk(KERN_ERR "%s: failed to enable %s: %d\n",
__func__, rdev_get_name(rdev), ret);
Expand Down

0 comments on commit 3aa713e

Please sign in to comment.