summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-04-21 23:45:17 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-04-21 23:45:17 +0000
commit833896d1e19032cdba97d3c0a0b777e66df3907c (patch)
treea42089818ddf830eeedead772ff6efaefee63004 /sys/arch
parentb317e5c430f1d153ad2bbddbc0070b6570e361db (diff)
Correct a thinko wrt 68060 operation; only affects 177 boards.
Diffstat (limited to 'sys/arch')
-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