diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-06-29 17:54:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-06-29 17:54:33 +0000 |
commit | 15242d449370d1f3cad950d452ff1c3e53a93484 (patch) | |
tree | 6adbc763bc526adbf97e34b928a85ccf6d811608 /sys/arch/sparc64/dev | |
parent | b72c6ee96af7f31eb5c7b25ede5b193eed0e7053 (diff) |
No need to keep specific variables for the kernel messages colors on sun
emulation, we can reuse the existing WSCOL_xxx codes, and WSCOL_BLACK and
WSCOL_WHITE will point to variables anyway.
Diffstat (limited to 'sys/arch/sparc64/dev')
-rw-r--r-- | sys/arch/sparc64/dev/fb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/fb.c b/sys/arch/sparc64/dev/fb.c index d5c94e5bab1..4084633c93e 100644 --- a/sys/arch/sparc64/dev/fb.c +++ b/sys/arch/sparc64/dev/fb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fb.c,v 1.10 2006/03/12 22:53:02 miod Exp $ */ +/* $OpenBSD: fb.c,v 1.11 2006/06/29 17:54:32 miod Exp $ */ /* $NetBSD: fb.c,v 1.23 1997/07/07 23:30:22 pk Exp $ */ /* @@ -235,8 +235,6 @@ fbwscons_console_init(struct sunfb *sf, int row) if (sf->sf_depth > 8) { wscol_white = 0; wscol_black = 255; - wskernel_bg = 0; - wskernel_fg = 255; } if (ISSET(sf->sf_ro.ri_caps, WSSCREEN_WSCOLORS) && |