From 0bfde0a7c7b60fc256b8340b46387e1b5bdfe78c Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Sun, 25 Jun 2017 19:21:59 +0000 Subject: [PATCH] Add the thaw_early method to struct dev_pm_ops in the LinuxKPI. MFC after: 1 week --- sys/compat/linuxkpi/common/include/linux/device.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linuxkpi/common/include/linux/device.h b/sys/compat/linuxkpi/common/include/linux/device.h index af69fa05e2e..f868c32d565 100644 --- a/sys/compat/linuxkpi/common/include/linux/device.h +++ b/sys/compat/linuxkpi/common/include/linux/device.h @@ -69,6 +69,7 @@ struct dev_pm_ops { int (*freeze)(struct device *dev); int (*freeze_late)(struct device *dev); int (*thaw)(struct device *dev); + int (*thaw_early)(struct device *dev); int (*poweroff)(struct device *dev); int (*poweroff_late)(struct device *dev); int (*restore)(struct device *dev);