Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 374d1f98 authored by Harald Judt's avatar Harald Judt Committed by Guenter Roeck
Browse files

hwmon: (nct6775) Add support for hibernate



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: default avatarHarald Judt <h.judt@gmx.at>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent a8b3a3a5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3997,6 +3997,8 @@ static int nct6775_resume(struct device *dev)
static const struct dev_pm_ops nct6775_dev_pm_ops = {
	.suspend = nct6775_suspend,
	.resume = nct6775_resume,
	.freeze = nct6775_suspend,
	.restore = nct6775_resume,
};

#define NCT6775_DEV_PM_OPS	(&nct6775_dev_pm_ops)