summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1999-12-08 01:35:45 +0000
committerJason Wright <jason@cvs.openbsd.org>1999-12-08 01:35:45 +0000
commitc501bc0b106ad4f72aad5e65b431d5b433a9c2c8 (patch)
tree41d0bc089bdda1a1252f24fbb87764fcf1ef8d16
parentf150170880f50ae34ea1e8a8c4b66ac221990d8e (diff)
make sure video timing is enabled (not always done by prom); NetBSD.
-rw-r--r--sys/arch/sparc/dev/bwtwo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/bwtwo.c b/sys/arch/sparc/dev/bwtwo.c
index 5bd695d5763..7465134d331 100644
--- a/sys/arch/sparc/dev/bwtwo.c
+++ b/sys/arch/sparc/dev/bwtwo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bwtwo.c,v 1.15 1998/11/20 15:57:21 deraadt Exp $ */
+/* $OpenBSD: bwtwo.c,v 1.16 1999/12/08 01:35:44 jason Exp $ */
/* $NetBSD: bwtwo.c,v 1.33 1997/05/24 20:16:02 pk Exp $ */
/*
@@ -515,7 +515,7 @@ bwtwo_set_video(sc, enable)
#endif
if (enable)
- sc->sc_reg->fbc_ctrl |= FBC_VENAB;
+ sc->sc_reg->fbc_ctrl |= FBC_VENAB | FBC_TIMING;
else
sc->sc_reg->fbc_ctrl &= ~FBC_VENAB;
}