Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 296906
b: refs/heads/master
c: 6e33ace
h: refs/heads/master
v: v3
  • Loading branch information
Viresh Kumar authored and Grant Likely committed Feb 16, 2012
1 parent e8fc467 commit 91c6fee
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 864533ceb6db336dead389577c102a8b792a121a
refs/heads/master: 6e33aceda2d82126e9d08a39e21a15be0dd00a6c
7 changes: 6 additions & 1 deletion trunk/drivers/gpio/gpio-pl061.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,12 @@ static int pl061_resume(struct device *dev)
return 0;
}

static SIMPLE_DEV_PM_OPS(pl061_dev_pm_ops, pl061_suspend, pl061_resume);
static const struct dev_pm_ops pl061_dev_pm_ops = {
.suspend = pl061_suspend,
.resume = pl061_resume,
.freeze = pl061_suspend,
.restore = pl061_resume,
};
#endif

static struct amba_id pl061_ids[] = {
Expand Down

0 comments on commit 91c6fee

Please sign in to comment.