summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-04 22:40:30 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-04 22:40:30 +0000
commit9e23912b2b0a76a22f7e5dbe1f543570e3f05b03 (patch)
treec63dba6f14cad4697e59b8fc131a421fe556e421
parentf41036d77976f6b2e25a0997c6fa54e36ac51c09 (diff)
restrict srmmu handling to just sun4m
-rw-r--r--sys/arch/sparc/stand/common/mmu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/common/mmu.c b/sys/arch/sparc/stand/common/mmu.c
index 9a554bd11f3..c992af3101b 100644
--- a/sys/arch/sparc/stand/common/mmu.c
+++ b/sys/arch/sparc/stand/common/mmu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mmu.c,v 1.1 2010/06/29 21:33:54 miod Exp $ */
+/* $OpenBSD: mmu.c,v 1.2 2010/07/04 22:40:29 deraadt Exp $ */
/* $NetBSD: mmu.c,v 1.8 2008/04/28 20:23:36 martin Exp $ */
/*-
@@ -71,7 +71,7 @@ mmu_init(void)
*/
rcookie = 2;
scookie = 17;
- } else if (CPU_ISSUN4M || CPU_ISSUN4D) {
+ } else if (CPU_ISSUN4M) {
char buf[32];
pmap_map = pmap_map_srmmu;
pmap_extract = pmap_extract_srmmu;