Skip to content

Commit

Permalink
rtc: rtc-tps80031: switch to using SIMPLE_DEV_PM_OPS
Browse files Browse the repository at this point in the history
Switch to using the SIMPLE_DEV_PM_OPS macro to declare the driver's
pm_ops.  It reduces code size.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Apr 30, 2013
1 parent e4ae909 commit 7d1376d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/rtc/rtc-tps80031.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,8 @@ static int tps80031_rtc_resume(struct device *dev)
};
#endif

static const struct dev_pm_ops tps80031_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(tps80031_rtc_suspend, tps80031_rtc_resume)
};
static SIMPLE_DEV_PM_OPS(tps80031_pm_ops, tps80031_rtc_suspend,
tps80031_rtc_resume);

static struct platform_driver tps80031_rtc_driver = {
.driver = {
Expand Down

0 comments on commit 7d1376d

Please sign in to comment.