mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Arnaud Faucher <arnaud.faucher@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Arnaud Faucher <arnaud.faucher@gmail.com>
Subject: [PATCH] net: irda: smsc-ircc2: switch driver to dev_pm_ops
Date: Sat, 25 Jul 2009 08:47:27 -0400	[thread overview]
Message-ID: <1248526047-18017-1-git-send-email-arnaud.faucher@gmail.com> (raw)

Gets rid of the following warning:
Platform driver 'smsc-ircc2' needs updating - please use dev_pm_ops

Signed-off-by: Arnaud Faucher <arnaud.faucher@gmail.com>
---
 drivers/net/irda/smsc-ircc2.c |   18 +++++++++++-------
 1 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/drivers/net/irda/smsc-ircc2.c b/drivers/net/irda/smsc-ircc2.c
index d0797ad..0e216fe 100644
--- a/drivers/net/irda/smsc-ircc2.c
+++ b/drivers/net/irda/smsc-ircc2.c
@@ -250,14 +250,18 @@ static int  smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base);
 
 /* Power Management */
 
-static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state);
-static int smsc_ircc_resume(struct platform_device *dev);
+static int smsc_ircc_suspend(struct device *dev);
+static int smsc_ircc_resume(struct device *dev);
 
-static struct platform_driver smsc_ircc_driver = {
+static struct dev_pm_ops smsc_ircc_pm_ops = {
 	.suspend	= smsc_ircc_suspend,
 	.resume		= smsc_ircc_resume,
+};
+
+static struct platform_driver smsc_ircc_driver = {
 	.driver		= {
 		.name	= SMSC_IRCC2_DRIVER_NAME,
+		.pm	= &smsc_ircc_pm_ops,
 	},
 };
 
@@ -1782,9 +1786,9 @@ static int smsc_ircc_net_close(struct net_device *dev)
 	return 0;
 }
 
-static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
+static int smsc_ircc_suspend(struct device *dev)
 {
-	struct smsc_ircc_cb *self = platform_get_drvdata(dev);
+	struct smsc_ircc_cb *self = dev_get_drvdata(dev);
 
 	if (!self->io.suspended) {
 		IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
@@ -1803,9 +1807,9 @@ static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
 	return 0;
 }
 
-static int smsc_ircc_resume(struct platform_device *dev)
+static int smsc_ircc_resume(struct device *dev)
 {
-	struct smsc_ircc_cb *self = platform_get_drvdata(dev);
+	struct smsc_ircc_cb *self = dev_get_drvdata(dev);
 
 	if (self->io.suspended) {
 		IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
-- 
1.6.3.3


                 reply	other threads:[~2009-07-25 12:53 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1248526047-18017-1-git-send-email-arnaud.faucher@gmail.com \
    --to=arnaud.faucher@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /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

all inboxes | Powered by JetHome®