projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7727da2
)
regulator: lock supply in regulator enable
author
Mattias Wallin
<
[email protected]
>
Thu, 4 Nov 2010 10:01:31 +0000
(11:01 +0100)
committer
Liam Girdwood
<
[email protected]
>
Tue, 30 Nov 2010 15:13:25 +0000
(15:13 +0000)
This patch add locks around regulator supply enable.
Signed-off-by: Mattias Wallin <
[email protected]
>
Acked-by: Mark Brown <
[email protected]
>
Signed-off-by: Liam Girdwood <
[email protected]
>
drivers/regulator/core.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/core.c
b/drivers/regulator/core.c
index 711fa1722bcea6aae685c2c1d2dc0c1bb8ba168e..27d062e1395c30411ec4a1f20b06e2d455d62f4a 100644
(file)
--- a/
drivers/regulator/core.c
+++ b/
drivers/regulator/core.c
@@
-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);