Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/sys/arch/next68k/next68k Pull up revision 1.10 (request...
details: https://anonhg.NetBSD.org/src/rev/77e1cffc4fd0
branches: netbsd-1-4
changeset: 469768:77e1cffc4fd0
user: he <he%NetBSD.org@localhost>
date: Mon Nov 29 21:28:36 1999 +0000
description:
Pull up revision 1.10 (requested by is):
Fix a typo which caused excessive cache flushes.
diffstat:
sys/arch/next68k/next68k/sys_machdep.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r f7823d4cd12f -r 77e1cffc4fd0 sys/arch/next68k/next68k/sys_machdep.c
--- a/sys/arch/next68k/next68k/sys_machdep.c Mon Nov 29 21:27:55 1999 +0000
+++ b/sys/arch/next68k/next68k/sys_machdep.c Mon Nov 29 21:28:36 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_machdep.c,v 1.7.2.1 1999/11/27 15:48:36 he Exp $ */
+/* $NetBSD: sys_machdep.c,v 1.7.2.2 1999/11/29 21:28:36 he Exp $ */
/*
* This file was taken from mvme68k/mvme68k/sys_machdep.c
@@ -166,7 +166,7 @@
#if defined(M68060)
(cputype == CPU_68040 && req & CC_IPURGE) ||
#else
- (req && CC_IPURGE) ||
+ (req & CC_IPURGE) ||
#endif
#endif
(req & ~CC_EXTPURGE) != CC_PURGE && len > 2*NBPG)
Home |
Main Index |
Thread Index |
Old Index