Skip to content

Commit

Permalink
hdaps: Use struct dev_pm_ops for power management
Browse files Browse the repository at this point in the history
Make the HDAPS driver define its PM callbacks through
a struct dev_pm_ops object rather than by using legacy PM hooks
in struct platform_driver.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
  • Loading branch information
Rafael J. Wysocki committed Jul 3, 2012
1 parent 199ac05 commit e25d5c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/platform/x86/hdaps.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,17 +305,19 @@ static int hdaps_probe(struct platform_device *dev)
return 0;
}

static int hdaps_resume(struct platform_device *dev)
static int hdaps_resume(struct device *dev)
{
return hdaps_device_init();
}

static SIMPLE_DEV_PM_OPS(hdaps_pm, NULL, hdaps_resume);

static struct platform_driver hdaps_driver = {
.probe = hdaps_probe,
.resume = hdaps_resume,
.driver = {
.name = "hdaps",
.owner = THIS_MODULE,
.pm = &hdaps_pm,
},
};

Expand Down

0 comments on commit e25d5c1

Please sign in to comment.