drivers/rtc/rtc-as3722.c: use SIMPLE_DEV_PM_OPS macro
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. 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>
This commit is contained in:
parent
b5ada4600d
commit
d55255cb11
|
@ -242,9 +242,8 @@ static int as3722_rtc_resume(struct device *dev)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const struct dev_pm_ops as3722_rtc_pm_ops = {
|
static SIMPLE_DEV_PM_OPS(as3722_rtc_pm_ops, as3722_rtc_suspend,
|
||||||
SET_SYSTEM_SLEEP_PM_OPS(as3722_rtc_suspend, as3722_rtc_resume)
|
as3722_rtc_resume);
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_driver as3722_rtc_driver = {
|
static struct platform_driver as3722_rtc_driver = {
|
||||||
.probe = as3722_rtc_probe,
|
.probe = as3722_rtc_probe,
|
||||||
|
|
Loading…
Reference in New Issue