Skip to content

Commit

Permalink
NET: smc91x: convert to dev_pm_ops
Browse files Browse the repository at this point in the history
Convert smc91x driver from legacy PM hooks over to using dev_pm_ops.

Tested on OMAP3 platform.

Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Acked-by: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Kevin Hilman authored and David S. Miller committed Nov 29, 2009
1 parent 5656b6c commit 9f950f7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions drivers/net/smc91x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2365,9 +2365,10 @@ static int __devexit smc_drv_remove(struct platform_device *pdev)
return 0;
}

static int smc_drv_suspend(struct platform_device *dev, pm_message_t state)
static int smc_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);

if (ndev) {
if (netif_running(ndev)) {
Expand All @@ -2379,9 +2380,10 @@ static int smc_drv_suspend(struct platform_device *dev, pm_message_t state)
return 0;
}

static int smc_drv_resume(struct platform_device *dev)
static int smc_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);

if (ndev) {
struct smc_local *lp = netdev_priv(ndev);
Expand All @@ -2397,14 +2399,18 @@ static int smc_drv_resume(struct platform_device *dev)
return 0;
}

static struct dev_pm_ops smc_drv_pm_ops = {
.suspend = smc_drv_suspend,
.resume = smc_drv_resume,
};

static struct platform_driver smc_driver = {
.probe = smc_drv_probe,
.remove = __devexit_p(smc_drv_remove),
.suspend = smc_drv_suspend,
.resume = smc_drv_resume,
.driver = {
.name = CARDNAME,
.owner = THIS_MODULE,
.pm = &smc_drv_pm_ops,
},
};

Expand Down

0 comments on commit 9f950f7

Please sign in to comment.