Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x68k/x68k Correct imbalance #if.
details: https://anonhg.NetBSD.org/src/rev/7b52609dc789
branches: trunk
changeset: 474119:7b52609dc789
user: minoura <minoura%NetBSD.org@localhost>
date: Mon Jun 28 15:35:04 1999 +0000
description:
Correct imbalance #if.
diffstat:
sys/arch/x68k/x68k/pmap.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diffs (32 lines):
diff -r c80ec6e31e75 -r 7b52609dc789 sys/arch/x68k/x68k/pmap.c
--- a/sys/arch/x68k/x68k/pmap.c Mon Jun 28 14:44:57 1999 +0000
+++ b/sys/arch/x68k/x68k/pmap.c Mon Jun 28 15:35:04 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.41 1999/06/18 14:27:09 minoura Exp $ */
+/* $NetBSD: pmap.c,v 1.42 1999/06/28 15:35:04 minoura Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2453,7 +2453,10 @@
#ifdef DEBUG
ste -= NPTEPG/SG4_LEV3SIZE;
#endif
- } else
+ }
+#if defined(M68020) || defined(M68030)
+ else
+#endif
#endif
#if defined(M68020) || defined(M68030)
*ste = SG_NV;
@@ -2721,8 +2724,9 @@
pmap_extract(pmap_kernel(), (vaddr_t)pmap->pm_stab);
#if defined(M68040) || defined(M68060)
#if defined(M68020) || defined(M68030)
- if (mmutype == MMU_68040) {
+ if (mmutype == MMU_68040)
#endif
+ {
#ifdef DEBUG
if (dowriteback && dokwriteback)
#endif
Home |
Main Index |
Thread Index |
Old Index