Skip to content

Commit

Permalink
rtc: rtc-tps6586x: 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 7d17158 commit 8070d05
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/rtc/rtc-tps6586x.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,8 @@ static int tps6586x_rtc_resume(struct device *dev)
}
#endif

static const struct dev_pm_ops tps6586x_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(tps6586x_rtc_suspend, tps6586x_rtc_resume)
};
static SIMPLE_DEV_PM_OPS(tps6586x_pm_ops, tps6586x_rtc_suspend,
tps6586x_rtc_resume);

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

0 comments on commit 8070d05

Please sign in to comment.