svn commit: r320334 - head/sys/compat/linuxkpi/common/include/linux

Mark Johnston markj at FreeBSD.org
Sun Jun 25 19:22:01 UTC 2017


Author: markj
Date: Sun Jun 25 19:21:59 2017
New Revision: 320334
URL: https://svnweb.freebsd.org/changeset/base/320334

Log:
  Add the thaw_early method to struct dev_pm_ops in the LinuxKPI.
  
  MFC after:	1 week

Modified:
  head/sys/compat/linuxkpi/common/include/linux/device.h

Modified: head/sys/compat/linuxkpi/common/include/linux/device.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/device.h	Sun Jun 25 19:20:12 2017	(r320333)
+++ head/sys/compat/linuxkpi/common/include/linux/device.h	Sun Jun 25 19:21:59 2017	(r320334)
@@ -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);


More information about the svn-src-all mailing list