From owner-svn-src-all@FreeBSD.ORG Sat Aug 2 17:45:08 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6C90B7F; Sat, 2 Aug 2014 17:45:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 940652A84; Sat, 2 Aug 2014 17:45:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s72Hj8uY086640; Sat, 2 Aug 2014 17:45:08 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s72Hj8TM086639; Sat, 2 Aug 2014 17:45:08 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201408021745.s72Hj8TM086639@svn.freebsd.org> From: Nathan Whitehorn Date: Sat, 2 Aug 2014 17:45:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r269437 - head/sys/dev/vt/hw/fb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 17:45:08 -0000 Author: nwhitehorn Date: Sat Aug 2 17:45:08 2014 New Revision: 269437 URL: http://svnweb.freebsd.org/changeset/base/269437 Log: Don't assume that the framebuffer driver is using vt_fb_blank() when blanking the screen during init. MFC after: 1 week Modified: head/sys/dev/vt/hw/fb/vt_fb.c Modified: head/sys/dev/vt/hw/fb/vt_fb.c ============================================================================== --- head/sys/dev/vt/hw/fb/vt_fb.c Sat Aug 2 17:35:13 2014 (r269436) +++ head/sys/dev/vt/hw/fb/vt_fb.c Sat Aug 2 17:45:08 2014 (r269437) @@ -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);