diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-01 12:06:40 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-01 12:06:40 +0000 |
commit | 2322dbd71985ae72dc74f0a6d5c3bc144b564e95 (patch) | |
tree | 18184e2eaa932636417a210921470b6fd95d60d7 /sys/arch/m68k | |
parent | 4581d87840aa9b9b7e1b571b727e4a8efaa3c8b4 (diff) |
Thinko in 68060-only #ifdef line.
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/m68k/pmap_bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/m68k/pmap_bootstrap.c b/sys/arch/m68k/m68k/pmap_bootstrap.c index 9d8f6cc3c98..5ea260fdd0e 100644 --- a/sys/arch/m68k/m68k/pmap_bootstrap.c +++ b/sys/arch/m68k/m68k/pmap_bootstrap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_bootstrap.c,v 1.11 2005/01/14 19:57:48 miod Exp $ */ +/* $OpenBSD: pmap_bootstrap.c,v 1.12 2005/08/01 12:06:39 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -391,7 +391,7 @@ pmap_bootstrap(nextpa, firstpa) */ if (RELOC(mmutype, int) == MMU_68040) protopte |= PG_CCB; -#ifdef CPU_68060 +#ifdef M68060 else if (RELOC(mmutype, int) == MMU_68060) protopte |= PG_CWT; #endif |