hwmon: (w83627ehf) Add support for hibernate
authorHarald Judt <h.judt@gmx.at>
Thu, 1 Aug 2013 14:18:45 +0000 (16:18 +0200)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 12 Aug 2013 05:10:40 +0000 (22:10 -0700)
Hibernation uses its own set of callback functions, even if the code
is the same as the code used for suspend/restore.

Signed-off-by: Harald Judt <h.judt@gmx.at>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/w83627ehf.c

index 286ca7b..23ff210 100644 (file)
@@ -2694,6 +2694,8 @@ static int w83627ehf_resume(struct device *dev)
 static const struct dev_pm_ops w83627ehf_dev_pm_ops = {
        .suspend = w83627ehf_suspend,
        .resume = w83627ehf_resume,
+       .freeze = w83627ehf_suspend,
+       .restore = w83627ehf_resume,
 };
 
 #define W83627EHF_DEV_PM_OPS   (&w83627ehf_dev_pm_ops)