]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
hdaps: Use struct dev_pm_ops for power management
authorRafael J. Wysocki <rjw@sisk.pl>
Sat, 30 Jun 2012 21:50:47 +0000 (23:50 +0200)
committerRafael J. Wysocki <rjw@sisk.pl>
Tue, 3 Jul 2012 16:34:27 +0000 (18:34 +0200)
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>
drivers/platform/x86/hdaps.c

index 24a3ae065f1b9ffce58f6c6aaa595f2384c11bac..d9ab6f64dcec0185148075dca8f4ef8fda1319bf 100644 (file)
@@ -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,
        },
 };