summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-09-17 21:54:57 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-09-17 21:54:57 +0000
commit60cb7c1e21dc64fc968e90cbcff8597b5b006777 (patch)
tree4ab987d1dd5b987fffc62e013fa4920c259fea4e /sys/arch/mvme68k
parentf42427b919d7fccdff1bea573ef69951b0a901df (diff)
It turns out that disabling selection timeout is not a good idea, on
MVME177 at least. Restore previous behaviour.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r--sys/arch/mvme68k/dev/sshdma.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/mvme68k/dev/sshdma.c b/sys/arch/mvme68k/dev/sshdma.c
index 441ec1796e4..cf075cd58f5 100644
--- a/sys/arch/mvme68k/dev/sshdma.c
+++ b/sys/arch/mvme68k/dev/sshdma.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshdma.c,v 1.4 2002/04/27 23:21:05 miod Exp $ */
+/* $OpenBSD: sshdma.c,v 1.5 2002/09/17 21:54:56 miod Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -135,8 +135,10 @@ void *auxp;
/*XXX*/ else
/*XXX*/ sc->sc_dcntl |= (3 << 6);
-#if defined(MVME172) || defined(MVME177) /* No Select timouts on MC68060 */
- if (cputyp == CPU_172 || cputyp == CPU_177)
+#if defined(MVME172) || defined(MVME177)
+ /* No Select timouts on MC68060 */
+ /* XXX 177 works better with them! */
+ if (cputyp == CPU_172 /* || cputyp == CPU_177 */)
sc->sc_ctest7 = SSH_CTEST7_SNOOP | SSH_CTEST7_TT1 | SSH_CTEST7_STD;
else
#endif