mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 13:11:14 +00:00
drivers/rtc/rtc-tps65910.c: use sleep_pm_ops macro for initialising suspend/resume callbacks
Use SET_SYSTEM_SLEEP_PM_OPS for setting suspend/resume callbacks for dev_pm_ops. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Cc: Mark Brown <broonie@opensource.wolfsonmicro.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
dfaf09ac85
commit
176a9f20d2
1 changed files with 4 additions and 9 deletions
|
@ -22,6 +22,7 @@
|
||||||
#include <linux/rtc.h>
|
#include <linux/rtc.h>
|
||||||
#include <linux/bcd.h>
|
#include <linux/bcd.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/pm_runtime.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/mfd/tps65910.h>
|
#include <linux/mfd/tps65910.h>
|
||||||
|
|
||||||
|
@ -304,7 +305,6 @@ static int tps65910_rtc_remove(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
|
|
||||||
static int tps65910_rtc_suspend(struct device *dev)
|
static int tps65910_rtc_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
struct tps65910_rtc *tps_rtc = dev_get_drvdata(dev);
|
struct tps65910_rtc *tps_rtc = dev_get_drvdata(dev);
|
||||||
|
@ -322,24 +322,19 @@ static int tps65910_rtc_resume(struct device *dev)
|
||||||
disable_irq_wake(tps_rtc->irq);
|
disable_irq_wake(tps_rtc->irq);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static const struct dev_pm_ops tps65910_rtc_pm_ops = {
|
static const struct dev_pm_ops tps65910_rtc_pm_ops = {
|
||||||
.suspend = tps65910_rtc_suspend,
|
SET_SYSTEM_SLEEP_PM_OPS(tps65910_rtc_suspend, tps65910_rtc_resume)
|
||||||
.resume = tps65910_rtc_resume,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define DEV_PM_OPS (&tps65910_rtc_pm_ops)
|
|
||||||
#else
|
|
||||||
#define DEV_PM_OPS NULL
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct platform_driver tps65910_rtc_driver = {
|
static struct platform_driver tps65910_rtc_driver = {
|
||||||
.probe = tps65910_rtc_probe,
|
.probe = tps65910_rtc_probe,
|
||||||
.remove = tps65910_rtc_remove,
|
.remove = tps65910_rtc_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = "tps65910-rtc",
|
.name = "tps65910-rtc",
|
||||||
.pm = DEV_PM_OPS,
|
.pm = &tps65910_rtc_pm_ops,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue