svn commit: r348035 - stable/12/sys/compat/linuxkpi/common/include/linux

Johannes Lundberg johalun at FreeBSD.org
Tue May 21 02:38:22 UTC 2019


Author: johalun
Date: Tue May 21 02:38:21 2019
New Revision: 348035
URL: https://svnweb.freebsd.org/changeset/base/348035

Log:
  MFC r347601:
  LinuxKPI: Add prepare to pm_ops and bump FreeBSD version.
  
  This patch is part of D19565
  
  Reviewed by:	hps
  Approved by:	imp (mentor), hps

Modified:
  stable/12/sys/compat/linuxkpi/common/include/linux/device.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/compat/linuxkpi/common/include/linux/device.h
==============================================================================
--- stable/12/sys/compat/linuxkpi/common/include/linux/device.h	Tue May 21 02:36:12 2019	(r348034)
+++ stable/12/sys/compat/linuxkpi/common/include/linux/device.h	Tue May 21 02:38:21 2019	(r348035)
@@ -61,6 +61,7 @@ struct class {
 };
 
 struct dev_pm_ops {
+	int (*prepare)(struct device *dev);
 	int (*suspend)(struct device *dev);
 	int (*suspend_late)(struct device *dev);
 	int (*resume)(struct device *dev);


More information about the svn-src-all mailing list