Date: Sun, 25 Jun 2017 19:22:00 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r320334 - head/sys/compat/linuxkpi/common/include/linux Message-ID: <201706251922.v5PJM0Gd071981@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706251922.v5PJM0Gd071981>