Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/amiga/amiga Make this compile for specialized kernels.
details: https://anonhg.NetBSD.org/src/rev/6398e0051165
branches: trunk
changeset: 521279:6398e0051165
user: is <is%NetBSD.org@localhost>
date: Sun Jan 27 14:29:26 2002 +0000
description:
Make this compile for specialized kernels.
diffstat:
sys/arch/amiga/amiga/sys_machdep.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (25 lines):
diff -r b793ae746044 -r 6398e0051165 sys/arch/amiga/amiga/sys_machdep.c
--- a/sys/arch/amiga/amiga/sys_machdep.c Sun Jan 27 14:18:11 2002 +0000
+++ b/sys/arch/amiga/amiga/sys_machdep.c Sun Jan 27 14:29:26 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_machdep.c,v 1.30 2002/01/26 13:24:55 aymeric Exp $ */
+/* $NetBSD: sys_machdep.c,v 1.31 2002/01/27 14:29:26 is Exp $ */
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
@@ -76,12 +76,12 @@
vaddr_t end = 0;
paddr_t pa = 0;
- if (addr == 0 ||
+ if (addr == 0
#if defined(M68040)
#if defined(M68060)
- (cputype == CPU_68040 && req & CC_IPURGE) ||
+ || (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