diff options
author | 2006-11-05 14:41:18 +0000 | |
---|---|---|
committer | 2006-11-05 14:41:18 +0000 | |
commit | 5d2e04623be99e72a184d10af243bd7592b0d85f (patch) | |
tree | 51ca9bd0c524bb0daba923fef4c46c0442fcfa0b | |
parent | Wait two seconds after reset before probing devices, lets RX23 get detected (diff) | |
download | wireguard-openbsd-5d2e04623be99e72a184d10af243bd7592b0d85f.tar.xz wireguard-openbsd-5d2e04623be99e72a184d10af243bd7592b0d85f.zip |
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; |