svn commit: r271020 - stable/10/sys/dev/vt/hw/fb

Ed Maste emaste at FreeBSD.org
Wed Sep 3 13:22:50 UTC 2014


Author: emaste
Date: Wed Sep  3 13:22:50 2014
New Revision: 271020
URL: http://svnweb.freebsd.org/changeset/base/271020

Log:
  MFC r269437 by nwhitehorn:
  
    Don't assume that the framebuffer driver is using vt_fb_blank() when
    blanking the screen during init.

Modified:
  stable/10/sys/dev/vt/hw/fb/vt_fb.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/vt/hw/fb/vt_fb.c
==============================================================================
--- stable/10/sys/dev/vt/hw/fb/vt_fb.c	Wed Sep  3 13:17:44 2014	(r271019)
+++ stable/10/sys/dev/vt/hw/fb/vt_fb.c	Wed Sep  3 13:22:50 2014	(r271020)
@@ -401,7 +401,7 @@ vt_fb_init(struct vt_device *vd)
 	}
 
 	/* Clear the screen. */
-	vt_fb_blank(vd, TC_BLACK);
+	vd->vd_driver->vd_blank(vd, TC_BLACK);
 
 	/* Wakeup screen. KMS need this. */
 	vt_fb_postswitch(vd);


More information about the svn-src-all mailing list