All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Mack <daniel@caiaq.de>
To: pHilipp Zabel <philipp.zabel@gmail.com>
Cc: Frans Pop <elendil@planet.nl>,
	linux-kernel@vger.kernel.org,
	linux-pm@lists.linux-foundation.org, spyro@f2s.com, cbou@mail.ru,
	mreimer@vpop.net
Subject: Re: [PATCH 2/5] pda-power: switch to new dev_pm_ops
Date: Thu, 6 Aug 2009 14:56:32 +0200	[thread overview]
Message-ID: <20090806125631.GI19257@buzzloop.caiaq.de> (raw)
In-Reply-To: <74d0deb30908060452k1fc0e982jf14be2e895e9a805@mail.gmail.com>

On Thu, Aug 06, 2009 at 01:52:41PM +0200, pHilipp Zabel wrote:
> On Thu, Aug 6, 2009 at 12:29 AM, Daniel Mack<daniel@caiaq.de> wrote:
> > On Wed, Aug 05, 2009 at 09:49:52PM +0200, Frans Pop wrote:
> >> Daniel Mack wrote:
> >> > +static struct dev_pm_ops pda_power_pm_ops = {
> >> > +       .suspend        = pda_power_suspend,
> >> > +       .freeze         = pda_power_freeze,
> >>
> >> Hmmm. Where's pda_power_freeze defined? Forgot to (compile)test the
> >> patches?
> >
> > Yes, sorry. I can't test hibernation, so I didn't pay enough attention.
> > I'll resend them anyway with Rafael's new macro used.
> 
> After Rafael's comments on gpio_keys, I believe also here
> .freeze/.thaw should be empty. enable/disable_irq_wake should be
> called from .poweroff/.restore.

Yes. See the version below.

Thanks,
Daniel


>From 6b534fb029f4623a8ddd60a4ea636bd626d6382a Mon Sep 17 00:00:00 2001
From: Daniel Mack <daniel@caiaq.de>
Date: Wed, 5 Aug 2009 15:31:23 +0200
Subject: [PATCH 1/3] pda-power: switch to new dev_pm_ops

The callbacks for the implemented functions are .poweroff and .restore,
as they only care for {dis,en}able_irq(). Renamed the functions to
reflect that.

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 |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/drivers/power/pda_power.c b/drivers/power/pda_power.c
index a232de6..c46a6dc 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_poweroff(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_restore(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,28 @@ static int pda_power_resume(struct platform_device *pdev)
 
 	return 0;
 }
+
+static struct dev_pm_ops pda_power_pm_ops = {
+	.poweroff	= pda_power_poweroff,
+	.restore	= pda_power_restore,
+};
+
+#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


  parent reply	other threads:[~2009-08-06 12:56 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 ` [PATCH 2/5] pda-power: " Daniel Mack
2009-08-05 18:29   ` [PATCH 3/5] ds2760: " Daniel Mack
2009-08-05 18:29   ` 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-06  3:29         ` David Miller
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-06 11:53           ` Steve.Glendinning
2009-08-06  3:29         ` David Miller
2009-08-05 18:29       ` Daniel Mack
2009-08-05 20:15       ` [PATCH 4/5] input: gpio-keys: " pHilipp Zabel
2009-08-05 20:15       ` 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-07 13:39                 ` pHilipp Zabel
2009-08-07 13:39                   ` pHilipp Zabel
2009-08-07 13:39                 ` pHilipp Zabel
2009-08-06 15:19               ` Rafael J. Wysocki
2009-08-05 19:49   ` [PATCH 2/5] pda-power: " Frans Pop
2009-08-05 22:29     ` Daniel Mack
2009-08-06 11:52       ` pHilipp Zabel
2009-08-06 11:52       ` pHilipp Zabel
2009-08-06 12:56         ` Daniel Mack
2009-08-06 12:56         ` Daniel Mack [this message]
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-05 22:29     ` Daniel Mack
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:44 ` Rafael J. Wysocki
2009-08-05 18:45   ` Daniel Mack
2009-08-05 18:45   ` Daniel Mack

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=20090806125631.GI19257@buzzloop.caiaq.de \
    --to=daniel@caiaq.de \
    --cc=cbou@mail.ru \
    --cc=elendil@planet.nl \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=mreimer@vpop.net \
    --cc=philipp.zabel@gmail.com \
    --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.