Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 262142
b: refs/heads/master
c: 2ae3636
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown authored and Liam Girdwood committed May 30, 2011
1 parent 3d6356f commit 7cf4c49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f21e0e81d81b649ad309cedc7226f1bed72982e0
refs/heads/master: 2ae3636b79aee1a69b2e84eff68bb123090796d3
4 changes: 2 additions & 2 deletions trunk/drivers/regulator/wm8994-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static int wm8994_ldo_enable(struct regulator_dev *rdev)
if (!ldo->enable)
return 0;

gpio_set_value(ldo->enable, 1);
gpio_set_value_cansleep(ldo->enable, 1);
ldo->is_enabled = true;

return 0;
Expand All @@ -57,7 +57,7 @@ static int wm8994_ldo_disable(struct regulator_dev *rdev)
if (!ldo->enable)
return -EINVAL;

gpio_set_value(ldo->enable, 0);
gpio_set_value_cansleep(ldo->enable, 0);
ldo->is_enabled = false;

return 0;
Expand Down

0 comments on commit 7cf4c49

Please sign in to comment.