diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:41:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:41:19 +0000 |
commit | 837f81014a44cb5f0dbe39147d6e38d2dd75fcda (patch) | |
tree | a015773c50bc53092e50b3ce6912b7db6d2faa35 | |
parent | 0b1a7707fb75bd9628e47e7c3ea417b1cffe4ed5 (diff) |
Do not enable hardware cursor in the Brooktree DAC on the 8bpp model as well
(it would only appear when booting after an UNJAM).
-rw-r--r-- | sys/arch/vax/vsa/gpx.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/vax/vsa/gpx.c b/sys/arch/vax/vsa/gpx.c index 17e1b1ad2bf..366c013d133 100644 --- a/sys/arch/vax/vsa/gpx.c +++ b/sys/arch/vax/vsa/gpx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gpx.c,v 1.13 2006/10/29 20:34:56 miod Exp $ */ +/* $OpenBSD: gpx.c,v 1.14 2006/11/05 14:41:18 miod Exp $ */ /* * Copyright (c) 2006 Miodrag Vallat. * @@ -477,7 +477,7 @@ gpx_burner(void *v, u_int on, u_int flags) rd->address = BT_CR; if (on) rd->control = BTCR_RAMENA | BTCR_BLINK_1648 | - BTCR_MPLX_4 | BTCR_DISPENA_OV0 | BTCR_DISPENA_OV1; + BTCR_MPLX_4; else /* fade colormap to black as well? */ rd->control = BTCR_BLINK_1648 | BTCR_MPLX_4; @@ -904,8 +904,7 @@ gpx_setup_screen(struct gpx_screen *ss) if (ss->ss_depth == 8) { struct ramdac8 *rd = ss->ss_vdac; rd->address = BT_CR; - rd->control = BTCR_RAMENA | BTCR_BLINK_1648 | BTCR_MPLX_4 | - BTCR_DISPENA_OV0 | BTCR_DISPENA_OV1; + rd->control = BTCR_RAMENA | BTCR_BLINK_1648 | BTCR_MPLX_4; } else { struct ramdac4 *rd = ss->ss_vdac; rd->control = RAMDAC4_INIT; |