mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 01/10] rtc: rtc-at91rm9200: switch to using SIMPLE_DEV_PM_OPS
@ 2013-03-18  9:29 Jingoo Han
  2013-03-18  9:30 ` [PATCH 02/10] rtc: rtc-mxc: " Jingoo Han
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Jingoo Han @ 2013-03-18  9:29 UTC (permalink / raw)
  To: 'Andrew Morton'
  Cc: linux-kernel, 'Alessandro Zummo',
	rtc-linux, 'Jingoo Han'

Switch to using 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>
---
 drivers/rtc/rtc-at91rm9200.c |   16 ++++------------
 1 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/drivers/rtc/rtc-at91rm9200.c b/drivers/rtc/rtc-at91rm9200.c
index f63c8fe..f07bd31 100644
--- a/drivers/rtc/rtc-at91rm9200.c
+++ b/drivers/rtc/rtc-at91rm9200.c
@@ -337,7 +337,7 @@ static int __exit at91_rtc_remove(struct platform_device *pdev)
 	return 0;
 }
 
-#ifdef CONFIG_PM
+#ifdef CONFIG_PM_SLEEP
 
 /* AT91RM9200 RTC Power management control */
 
@@ -369,24 +369,16 @@ static int at91_rtc_resume(struct device *dev)
 	}
 	return 0;
 }
-
-static const struct dev_pm_ops at91_rtc_pm = {
-	.suspend =	at91_rtc_suspend,
-	.resume =	at91_rtc_resume,
-};
-
-#define at91_rtc_pm_ptr	&at91_rtc_pm
-
-#else
-#define at91_rtc_pm_ptr	NULL
 #endif
 
+static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
+
 static struct platform_driver at91_rtc_driver = {
 	.remove		= __exit_p(at91_rtc_remove),
 	.driver		= {
 		.name	= "at91_rtc",
 		.owner	= THIS_MODULE,
-		.pm	= at91_rtc_pm_ptr,
+		.pm	= &at91_rtc_pm_ops,
 	},
 };
 
-- 
1.7.2.5



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-03-18  9:33 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-18  9:29 [PATCH 01/10] rtc: rtc-at91rm9200: switch to using SIMPLE_DEV_PM_OPS Jingoo Han
2013-03-18  9:30 ` [PATCH 02/10] rtc: rtc-mxc: " Jingoo Han
2013-03-18  9:30 ` [PATCH 03/10] rtc: rtc-pxa: " Jingoo Han
2013-03-18  9:30 ` [PATCH 04/10] rtc: rtc-rc5t583: " Jingoo Han
2013-03-18  9:31 ` [PATCH 05/10] rtc: rtc-sa1100: " Jingoo Han
2013-03-18  9:31 ` [PATCH 06/10] rtc: rtc-sh: " Jingoo Han
2013-03-18  9:31 ` [PATCH 07/10] rtc: rtc-wm8350: " Jingoo Han
2013-03-18  9:32 ` [PATCH 08/10] rtc: rtc-tps6586x: " Jingoo Han
2013-03-18  9:32 ` [PATCH 09/10] rtc: rtc-tps65910: " Jingoo Han
2013-03-18  9:32 ` [PATCH 10/10] rtc: rtc-tps80031: " Jingoo Han

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome