From: Daniel Mack <daniel@caiaq.de>
To: linux-kernel@vger.kernel.org
Cc: linux-pm@lists.linux-foundation.org,
Daniel Mack <daniel@caiaq.de>, Ian Molton <spyro@f2s.com>,
Anton Vorontsov <cbou@mail.ru>, Matt Reimer <mreimer@vpop.net>
Subject: [PATCH 2/5] pda-power: switch to new dev_pm_ops
Date: Wed, 5 Aug 2009 20:29:28 +0200 [thread overview]
Message-ID: <1249496971-9019-2-git-send-email-daniel@caiaq.de> (raw)
In-Reply-To: <1249496971-9019-1-git-send-email-daniel@caiaq.de>
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Ian Molton <spyro@f2s.com>
Cc: Anton Vorontsov <cbou@mail.ru>
Cc: Matt Reimer <mreimer@vpop.net>
---
drivers/power/pda_power.c | 27 ++++++++++++++++++---------
1 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/drivers/power/pda_power.c b/drivers/power/pda_power.c
index a232de6..34af275 100644
--- a/drivers/power/pda_power.c
+++ b/drivers/power/pda_power.c
@@ -402,9 +402,9 @@ static int pda_power_remove(struct platform_device *pdev)
static int ac_wakeup_enabled;
static int usb_wakeup_enabled;
-static int pda_power_suspend(struct platform_device *pdev, pm_message_t state)
+static int pda_power_suspend(struct device *dev)
{
- if (device_may_wakeup(&pdev->dev)) {
+ if (device_may_wakeup(dev)) {
if (ac_irq)
ac_wakeup_enabled = !enable_irq_wake(ac_irq->start);
if (usb_irq)
@@ -414,9 +414,9 @@ static int pda_power_suspend(struct platform_device *pdev, pm_message_t state)
return 0;
}
-static int pda_power_resume(struct platform_device *pdev)
+static int pda_power_resume(struct device *dev)
{
- if (device_may_wakeup(&pdev->dev)) {
+ if (device_may_wakeup(dev)) {
if (usb_irq && usb_wakeup_enabled)
disable_irq_wake(usb_irq->start);
if (ac_irq && ac_wakeup_enabled)
@@ -425,21 +425,30 @@ static int pda_power_resume(struct platform_device *pdev)
return 0;
}
+
+static struct dev_pm_ops pda_power_pm_ops = {
+ .suspend = pda_power_suspend,
+ .freeze = pda_power_freeze,
+ .resume = pda_power_resume,
+ .thaw = pda_power_resume,
+};
+
+#define PDA_POWER_PM_OPS (&pda_power_pm_ops)
+
#else
-#define pda_power_suspend NULL
-#define pda_power_resume NULL
+#define PDA_POWER_PM_OPS NULL
#endif /* CONFIG_PM */
MODULE_ALIAS("platform:pda-power");
static struct platform_driver pda_power_pdrv = {
.driver = {
- .name = "pda-power",
+ .name = "pda-power",
+ .owner = THIS_MODULE,
+ .pm = PDA_POWER_PM_OPS,
},
.probe = pda_power_probe,
.remove = pda_power_remove,
- .suspend = pda_power_suspend,
- .resume = pda_power_resume,
};
static int __init pda_power_init(void)
--
1.6.3.3
next prev parent reply other threads:[~2009-08-05 18:29 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-05 18:29 [PATCH 1/5] w1_gpio: switch to new dev_pm_ops Daniel Mack
2009-08-05 18:29 ` Daniel Mack [this message]
2009-08-05 18:29 ` [PATCH 3/5] ds2760: " Daniel Mack
2009-08-05 18:29 ` [PATCH 4/5] input: gpio-keys: " Daniel Mack
2009-08-05 18:29 ` Daniel Mack
2009-08-05 18:29 ` [PATCH 5/5] net: smsc911x: " Daniel Mack
2009-08-05 18:29 ` Daniel Mack
2009-08-06 3:29 ` David Miller
2009-08-06 3:29 ` David Miller
2009-08-06 11:53 ` Steve.Glendinning
2009-08-06 11:53 ` Steve.Glendinning
2009-08-06 11:53 ` Steve.Glendinning
2009-08-06 20:26 ` David Miller
2009-08-06 20:26 ` David Miller
2009-08-06 20:26 ` David Miller
2009-08-05 20:15 ` [PATCH 4/5] input: gpio-keys: " pHilipp Zabel
2009-08-05 20:15 ` pHilipp Zabel
2009-08-05 22:33 ` Daniel Mack
2009-08-05 22:33 ` Daniel Mack
2009-08-06 0:51 ` Rafael J. Wysocki
2009-08-06 0:51 ` [linux-pm] " Rafael J. Wysocki
2009-08-06 12:59 ` Daniel Mack
2009-08-06 12:59 ` [linux-pm] " Daniel Mack
2009-08-06 15:19 ` Rafael J. Wysocki
2009-08-06 15:19 ` [linux-pm] " Rafael J. Wysocki
2009-08-07 13:39 ` pHilipp Zabel
2009-08-07 13:39 ` pHilipp Zabel
2009-08-07 13:39 ` pHilipp Zabel
2009-08-05 20:15 ` pHilipp Zabel
2009-08-05 18:29 ` [PATCH 3/5] ds2760: " Daniel Mack
2009-08-05 19:49 ` [PATCH 2/5] pda-power: " Frans Pop
2009-08-05 22:29 ` Daniel Mack
2009-08-05 22:29 ` Daniel Mack
2009-08-06 11:52 ` pHilipp Zabel
2009-08-06 12:56 ` Daniel Mack
2009-08-07 13:35 ` pHilipp Zabel
2009-08-07 13:35 ` pHilipp Zabel
2009-09-04 16:34 ` Anton Vorontsov
2009-09-04 16:34 ` Anton Vorontsov
2009-08-06 12:56 ` Daniel Mack
2009-08-06 11:52 ` pHilipp Zabel
2009-08-05 19:49 ` Frans Pop
2009-08-05 18:29 ` Daniel Mack
2009-08-05 18:44 ` [PATCH 1/5] w1_gpio: " Rafael J. Wysocki
2009-08-05 18:45 ` Daniel Mack
2009-08-05 18:45 ` Daniel Mack
2009-08-05 18:44 ` Rafael J. Wysocki
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=1249496971-9019-2-git-send-email-daniel@caiaq.de \
--to=daniel@caiaq.de \
--cc=cbou@mail.ru \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=mreimer@vpop.net \
--cc=spyro@f2s.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.