Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2014 13:22:50 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r271020 - stable/10/sys/dev/vt/hw/fb
Message-ID:  <201409031322.s83DMoKf031412@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409031322.s83DMoKf031412>