Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 376040
b: refs/heads/master
c: a5017b9
h: refs/heads/master
v: v3
  • Loading branch information
Lee Jones authored and Greg Kroah-Hartman committed May 16, 2013
1 parent 7dc425b commit 9767fbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: ab2273c62dbec17432d40d2a78ce380f3d34a216
refs/heads/master: a5017b962059f7cec8f6d2dfb286ef3fbfbaab82
6 changes: 5 additions & 1 deletion trunk/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,11 @@ static int synaptics_rmi4_resume(struct device *dev)
unsigned char intr_status;
struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev);

regulator_enable(rmi4_data->regulator);
retval = regulator_enable(rmi4_data->regulator);
if (retval) {
dev_err(dev, "Regulator enable failed (%d)\n", retval);
return retval;
}

enable_irq(rmi4_data->i2c_client->irq);
rmi4_data->touch_stopped = false;
Expand Down

0 comments on commit 9767fbd

Please sign in to comment.