svn commit: r355811 - stable/11/sys/dev/vt/hw/efifb

Ed Maste emaste at FreeBSD.org
Mon Dec 16 18:04:31 UTC 2019


Author: emaste
Date: Mon Dec 16 18:04:31 2019
New Revision: 355811
URL: https://svnweb.freebsd.org/changeset/base/355811

Log:
  MFC r348059: vt efifb: add suspend/resume calls
  
  PR:		237050
  Submitted by:	Erik Kurzinger <ekurzinger at nvidia.com>

Modified:
  stable/11/sys/dev/vt/hw/efifb/efifb.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/vt/hw/efifb/efifb.c
==============================================================================
--- stable/11/sys/dev/vt/hw/efifb/efifb.c	Mon Dec 16 18:02:48 2019	(r355810)
+++ stable/11/sys/dev/vt/hw/efifb/efifb.c	Mon Dec 16 18:04:31 2019	(r355811)
@@ -61,6 +61,8 @@ static struct vt_driver vt_efifb_driver = {
 	.vd_setpixel = vt_fb_setpixel,
 	.vd_fb_ioctl = vt_fb_ioctl,
 	.vd_fb_mmap = vt_fb_mmap,
+	.vd_suspend = vt_suspend,
+	.vd_resume = vt_resume,
 	/* Better than VGA, but still generic driver. */
 	.vd_priority = VD_PRIORITY_GENERIC + 1,
 };


More information about the svn-src-all mailing list