summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2002-04-21 23:45:16 +0000
committermiod <miod@openbsd.org>2002-04-21 23:45:16 +0000
commitf64cdd4bf00b6a851e7d7d4bca6dd178d32421a5 (patch)
tree46f3b29d29e6c5f8d6c4af31ec3e262ce43a5ac4
parentFix comments. (diff)
downloadwireguard-openbsd-f64cdd4bf00b6a851e7d7d4bca6dd178d32421a5.tar.xz
wireguard-openbsd-f64cdd4bf00b6a851e7d7d4bca6dd178d32421a5.zip
Correct a thinko wrt 68060 operation; only affects 177 boards.
-rw-r--r--sys/arch/mvme68k/dev/sshdma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/dev/sshdma.c b/sys/arch/mvme68k/dev/sshdma.c
index fcb2ad66bfe..47430aae5b4 100644
--- a/sys/arch/mvme68k/dev/sshdma.c
+++ b/sys/arch/mvme68k/dev/sshdma.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshdma.c,v 1.2 2002/03/14 01:26:37 millert Exp $ */
+/* $OpenBSD: sshdma.c,v 1.3 2002/04/21 23:45:16 miod Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -135,7 +135,7 @@ void *auxp;
/*XXX*/ sc->sc_dcntl |= (3 << 6);
#if defined(MVME172) || defined(MVME177) /* No Select timouts on MC68060 */
- if (cputyp == CPU_172 || cputyp == CPU_172)
+ if (cputyp == CPU_172 || cputyp == CPU_177)
sc->sc_ctest7 = SSH_CTEST7_SNOOP | SSH_CTEST7_TT1 | SSH_CTEST7_STD;
else
#endif