| To: | linux-kernel@vger.kernel.org |
|---|---|
| Subject: | [PATCH V2] au1xmmc: dev_pm_ops conversion |
| From: | Manuel Lauss <manuel.lauss@googlemail.com> |
| Date: | Wed, 22 Jul 2009 17:18:39 +0200 |
| Cc: | linux-mips@linux-mips.org, Manuel Lauss <manuel.lauss@gmail.com>, Frans Pop <elendil@planet.nl> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=jtxdRjKbM1RVZOMZpWjViueKZoX76/nRmgv1MsP42hI=; b=Z4qKceh53xKxH9hq1kkyAaAqVtZhWKvJ1flB2lXpBTuodAdMaIFuStc2TbTouDgyRh uUAfSETGz9MLzzL1o2OmtTK1Hfdga4otSQ3K3PV4I9E6EZCnrdfxvAVRt8KQRUDZRPEq IFTuR8c60mj4agFJaKoCeuRucW114KA+tSMhc= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=vH5vR/fQh8NaDfya0bOlredcmOXwOzqpWaZBh/3zpzoVnEWhK4ek078baICqSjcfhT S3KqUxf+szJoiaZbPyClV+BY6rvYT+gNeRgxVqpFsDNTZuiNPRFOawbjvTBYVSMW8WuJ 5Tx/IUkrORT74RhxKSTDXmxG502aeAbZ8MPj8= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
Cc: Frans Pop <elendil@planet.nl>
Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com>
---
V1->V2: don't remove CONFIG_PM
drivers/mmc/host/au1xmmc.c | 24 +++++++++++++++---------
1 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c
index d3f5561..2d4e20f 100644
--- a/drivers/mmc/host/au1xmmc.c
+++ b/drivers/mmc/host/au1xmmc.c
@@ -1132,12 +1132,12 @@ static int __devexit au1xmmc_remove(struct
platform_device *pdev)
}
#ifdef CONFIG_PM
-static int au1xmmc_suspend(struct platform_device *pdev, pm_message_t state)
+static int au1xmmc_suspend(struct device *dev)
{
- struct au1xmmc_host *host = platform_get_drvdata(pdev);
+ struct au1xmmc_host *host = dev_get_drvdata(dev);
int ret;
- ret = mmc_suspend_host(host->mmc, state);
+ ret = mmc_suspend_host(host->mmc, PMSG_SUSPEND);
if (ret)
return ret;
@@ -1150,27 +1150,33 @@ static int au1xmmc_suspend(struct platform_device
*pdev, pm_message_t state)
return 0;
}
-static int au1xmmc_resume(struct platform_device *pdev)
+static int au1xmmc_resume(struct device *dev)
{
- struct au1xmmc_host *host = platform_get_drvdata(pdev);
+ struct au1xmmc_host *host = dev_get_drvdata(dev);
au1xmmc_reset_controller(host);
return mmc_resume_host(host->mmc);
}
+
+static struct dev_pm_ops au1xmmc_pmops = {
+ .resume = au1xmmc_resume,
+ .suspend = au1xmmc_suspend,
+};
+
+#define AU1XMMC_PMOPS &au1xmmc_pmops
+
#else
-#define au1xmmc_suspend NULL
-#define au1xmmc_resume NULL
+#define AU1XMMC_PMOPS NULL
#endif
static struct platform_driver au1xmmc_driver = {
.probe = au1xmmc_probe,
.remove = au1xmmc_remove,
- .suspend = au1xmmc_suspend,
- .resume = au1xmmc_resume,
.driver = {
.name = DRIVER_NAME,
.owner = THIS_MODULE,
+ .pm = AU1XMMC_PMOPS,
},
};
--
1.6.3.3
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 1/2] ar7: fix build failures when CONFIG_SERIAL_8250 is not enabled, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH v4 02/16] [loongson] kgdb: Remove out-of-date board-specific source code, Jason Wessel |
| Previous by Thread: | [PATCH] mips: decrease size of au1xxx_dbdma_pm_regs[][], Roel Kluin |
| Next by Thread: | Re: [PATCH V2] au1xmmc: dev_pm_ops conversion, Dmitry Torokhov |
| Indexes: | [Date] [Thread] [Top] [All Lists] |