diff options
| author | Frederic Weisbecker <fweisbec@gmail.com> | 2013-05-02 17:37:49 +0200 | 
|---|---|---|
| committer | Frederic Weisbecker <fweisbec@gmail.com> | 2013-05-02 17:54:19 +0200 | 
| commit | c032862fba51a3ca504752d3a25186b324c5ce83 (patch) | |
| tree | 955dc2ba4ab3df76ecc2bb780ee84aca04967e8d /drivers/rtc/rtc-pxa.c | |
| parent | fda76e074c7737fc57855dd17c762e50ed526052 (diff) | |
| parent | 8700c95adb033843fc163d112b9d21d4fda78018 (diff) | |
Merge commit '8700c95adb03' into timers/nohz
The full dynticks tree needs the latest RCU and sched
upstream updates in order to fix some dependencies.
Merge a common upstream merge point that has these
updates.
Conflicts:
	include/linux/perf_event.h
	kernel/rcutree.h
	kernel/rcutree_plugin.h
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'drivers/rtc/rtc-pxa.c')
| -rw-r--r-- | drivers/rtc/rtc-pxa.c | 24 | 
1 files changed, 4 insertions, 20 deletions
diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c index 03c85ee719a..ed037ae91c5 100644 --- a/drivers/rtc/rtc-pxa.c +++ b/drivers/rtc/rtc-pxa.c @@ -416,7 +416,7 @@ static struct of_device_id pxa_rtc_dt_ids[] = {  MODULE_DEVICE_TABLE(of, pxa_rtc_dt_ids);  #endif -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP  static int pxa_rtc_suspend(struct device *dev)  {  	struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev); @@ -434,36 +434,20 @@ static int pxa_rtc_resume(struct device *dev)  		disable_irq_wake(pxa_rtc->irq_Alrm);  	return 0;  } - -static const struct dev_pm_ops pxa_rtc_pm_ops = { -	.suspend	= pxa_rtc_suspend, -	.resume		= pxa_rtc_resume, -};  #endif +static SIMPLE_DEV_PM_OPS(pxa_rtc_pm_ops, pxa_rtc_suspend, pxa_rtc_resume); +  static struct platform_driver pxa_rtc_driver = {  	.remove		= __exit_p(pxa_rtc_remove),  	.driver		= {  		.name	= "pxa-rtc",  		.of_match_table = of_match_ptr(pxa_rtc_dt_ids), -#ifdef CONFIG_PM  		.pm	= &pxa_rtc_pm_ops, -#endif  	},  }; -static int __init pxa_rtc_init(void) -{ -	return platform_driver_probe(&pxa_rtc_driver, pxa_rtc_probe); -} - -static void __exit pxa_rtc_exit(void) -{ -	platform_driver_unregister(&pxa_rtc_driver); -} - -module_init(pxa_rtc_init); -module_exit(pxa_rtc_exit); +module_platform_driver_probe(pxa_rtc_driver, pxa_rtc_probe);  MODULE_AUTHOR("Robert Jarzmik <robert.jarzmik@free.fr>");  MODULE_DESCRIPTION("PXA27x/PXA3xx Realtime Clock Driver (RTC)");  | 
