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);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to