Module Name: src
Committed By: macallan
Date: Fri May 12 00:41:25 UTC 2017
Modified Files:
src/sys/dev/rasops: rasops.c
Log Message:
rasops_reconfig(): don't clear flags we won't set here
To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/sys/dev/rasops/rasops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/rasops/rasops.c
diff -u src/sys/dev/rasops/rasops.c:1.75 src/sys/dev/rasops/rasops.c:1.76
--- src/sys/dev/rasops/rasops.c:1.75 Sat Apr 22 15:05:02 2017
+++ src/sys/dev/rasops/rasops.c Fri May 12 00:41:25 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops.c,v 1.75 2017/04/22 15:05:02 macallan Exp $ */
+/* $NetBSD: rasops.c,v 1.76 2017/05/12 00:41:25 macallan Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.75 2017/04/22 15:05:02 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.76 2017/05/12 00:41:25 macallan Exp $");
#include "opt_rasops.h"
#include "rasops_glue.h"
@@ -415,12 +415,14 @@ rasops_reconfig(struct rasops_info *ri,
ri->ri_ops.cursor = rasops_cursor;
ri->ri_do_cursor = rasops_do_cursor;
+ ri->ri_caps &= ~(WSSCREEN_UNDERLINE | WSSCREEN_HILIT |
+ WSSCREEN_WSCOLORS | WSSCREEN_REVERSE);
if (ri->ri_depth < 8 || (ri->ri_flg & RI_FORCEMONO) != 0) {
ri->ri_ops.allocattr = rasops_allocattr_mono;
- ri->ri_caps = WSSCREEN_UNDERLINE | WSSCREEN_REVERSE;
+ ri->ri_caps |= WSSCREEN_UNDERLINE | WSSCREEN_REVERSE;
} else {
ri->ri_ops.allocattr = rasops_allocattr_color;
- ri->ri_caps = WSSCREEN_UNDERLINE | WSSCREEN_HILIT |
+ ri->ri_caps |= WSSCREEN_UNDERLINE | WSSCREEN_HILIT |
WSSCREEN_WSCOLORS | WSSCREEN_REVERSE;
}