From: Jingoo Han <jg1.han@samsung.com>
To: "'Andrew Morton'" <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
"'Alessandro Zummo'" <a.zummo@towertech.it>,
rtc-linux@googlegroups.com, "'Jingoo Han'" <jg1.han@samsung.com>
Subject: [PATCH 04/10] rtc: rtc-rc5t583: switch to using SIMPLE_DEV_PM_OPS
Date: Mon, 18 Mar 2013 18:30:56 +0900 [thread overview]
Message-ID: <01ba01ce23bb$4b5a03d0$e20e0b70$%han@samsung.com> (raw)
In-Reply-To: <01b701ce23bb$1b79b2a0$526d17e0$%han@samsung.com>
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-rc5t583.c | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/drivers/rtc/rtc-rc5t583.c b/drivers/rtc/rtc-rc5t583.c
index eb3194d..1734e97 100644
--- a/drivers/rtc/rtc-rc5t583.c
+++ b/drivers/rtc/rtc-rc5t583.c
@@ -282,7 +282,6 @@ static int rc5t583_rtc_remove(struct platform_device *pdev)
}
#ifdef CONFIG_PM_SLEEP
-
static int rc5t583_rtc_suspend(struct device *dev)
{
struct rc5t583 *rc5t583 = dev_get_drvdata(dev->parent);
@@ -304,24 +303,18 @@ static int rc5t583_rtc_resume(struct device *dev)
return regmap_write(rc5t583->regmap, RC5T583_RTC_CTL1,
rc5t583_rtc->irqen);
}
-
-static const struct dev_pm_ops rc5t583_rtc_pm_ops = {
- .suspend = rc5t583_rtc_suspend,
- .resume = rc5t583_rtc_resume,
-};
-
-#define DEV_PM_OPS (&rc5t583_rtc_pm_ops)
-#else
-#define DEV_PM_OPS NULL
#endif
+static SIMPLE_DEV_PM_OPS(rc5t583_rtc_pm_ops, rc5t583_rtc_suspend,
+ rc5t583_rtc_resume);
+
static struct platform_driver rc5t583_rtc_driver = {
.probe = rc5t583_rtc_probe,
.remove = rc5t583_rtc_remove,
.driver = {
.owner = THIS_MODULE,
.name = "rtc-rc5t583",
- .pm = DEV_PM_OPS,
+ .pm = &rc5t583_rtc_pm_ops,
},
};
--
1.7.2.5
next prev parent reply other threads:[~2013-03-18 9:31 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-18 9:29 [PATCH 01/10] rtc: rtc-at91rm9200: " 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 ` Jingoo Han [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='01ba01ce23bb$4b5a03d0$e20e0b70$%han@samsung.com' \
--to=jg1.han@samsung.com \
--cc=a.zummo@towertech.it \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rtc-linux@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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