Sync with last two changes made to sys/arch/sparc/dev/fb.c (don't clear
screen, typo).
This commit is contained in:
parent
7efb86f6b8
commit
3d5a1b1eea
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fb.c,v 1.9 1999/05/16 21:19:33 ad Exp $ */
|
||||
/* $NetBSD: fb.c,v 1.10 1999/05/18 21:38:07 ad Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -289,11 +289,11 @@ fbrcons_init(fb)
|
|||
ri->ri_forcemono = 1;
|
||||
|
||||
/* Get operations set and connect to rcons */
|
||||
if (rasops_init(ri, maxrow, maxcol, 1, 0))
|
||||
if (rasops_init(ri, maxrow, maxcol, 0, 0))
|
||||
panic("fbrcons_init: rasops_init failed!");
|
||||
|
||||
rc->rc_ops = &ri->ri_ops;
|
||||
rc->rc_cookie = &ri;
|
||||
rc->rc_cookie = ri;
|
||||
rc->rc_bell = fb_bell;
|
||||
rcons_init(rc);
|
||||
|
||||
|
|
Loading…
Reference in New Issue