Commit e25d5c11 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

hdaps: Use struct dev_pm_ops for power management

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: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 199ac052
...@@ -305,17 +305,19 @@ static int hdaps_probe(struct platform_device *dev) ...@@ -305,17 +305,19 @@ static int hdaps_probe(struct platform_device *dev)
return 0; return 0;
} }
static int hdaps_resume(struct platform_device *dev) static int hdaps_resume(struct device *dev)
{ {
return hdaps_device_init(); return hdaps_device_init();
} }
static SIMPLE_DEV_PM_OPS(hdaps_pm, NULL, hdaps_resume);
static struct platform_driver hdaps_driver = { static struct platform_driver hdaps_driver = {
.probe = hdaps_probe, .probe = hdaps_probe,
.resume = hdaps_resume,
.driver = { .driver = {
.name = "hdaps", .name = "hdaps",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = &hdaps_pm,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment