dm9000: switch to dev_pm_ops

Signed-off-by: Mike Rapoport <mike@compulab.co.il>
Acked-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Mike Rapoport 2009-07-21 12:37:18 -07:00 committed by David S. Miller
parent 5be93b9a86
commit 69222e2cb0
1 changed files with 12 additions and 6 deletions

View File

@ -1483,9 +1483,10 @@ out:
}
static int
dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
dm9000_drv_suspend(struct device *dev)
{
struct net_device *ndev = platform_get_drvdata(dev);
struct platform_device *pdev = to_platform_device(dev);
struct net_device *ndev = platform_get_drvdata(pdev);
board_info_t *db;
if (ndev) {
@ -1501,9 +1502,10 @@ dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
}
static int
dm9000_drv_resume(struct platform_device *dev)
dm9000_drv_resume(struct device *dev)
{
struct net_device *ndev = platform_get_drvdata(dev);
struct platform_device *pdev = to_platform_device(dev);
struct net_device *ndev = platform_get_drvdata(pdev);
board_info_t *db = netdev_priv(ndev);
if (ndev) {
@ -1520,6 +1522,11 @@ dm9000_drv_resume(struct platform_device *dev)
return 0;
}
static struct dev_pm_ops dm9000_drv_pm_ops = {
.suspend = dm9000_drv_suspend,
.resume = dm9000_drv_resume,
};
static int __devexit
dm9000_drv_remove(struct platform_device *pdev)
{
@ -1539,11 +1546,10 @@ static struct platform_driver dm9000_driver = {
.driver = {
.name = "dm9000",
.owner = THIS_MODULE,
.pm = &dm9000_drv_pm_ops,
},
.probe = dm9000_probe,
.remove = __devexit_p(dm9000_drv_remove),
.suspend = dm9000_drv_suspend,
.resume = dm9000_drv_resume,
};
static int __init