Module Name:    src
Committed By:   thorpej
Date:           Fri Mar 12 18:10:00 UTC 2021

Modified Files:
        src/sys/arch/powerpc/oea: pmap.c

Log Message:
Fix paste-o in last.


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/sys/arch/powerpc/oea/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/powerpc/oea/pmap.c
diff -u src/sys/arch/powerpc/oea/pmap.c:1.104 src/sys/arch/powerpc/oea/pmap.c:1.105
--- src/sys/arch/powerpc/oea/pmap.c:1.104	Fri Mar 12 04:57:42 2021
+++ src/sys/arch/powerpc/oea/pmap.c	Fri Mar 12 18:10:00 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.104 2021/03/12 04:57:42 thorpej Exp $	*/
+/*	$NetBSD: pmap.c,v 1.105 2021/03/12 18:10:00 thorpej Exp $	*/
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.104 2021/03/12 04:57:42 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.105 2021/03/12 18:10:00 thorpej Exp $");
 
 #define	PMAP_NOOPNAMES
 
@@ -3432,7 +3432,7 @@ pmap_bootstrap1(paddr_t kernelstart, pad
 #endif /* PMAP_OEA || PMAP_OEA64_BRIDGE */
 
 #if defined(PMAP_OEA) && defined(PPC_OEA601)
-	if ((MFPVR() >> 16) == MPC601)) {
+	if ((MFPVR() >> 16) == MPC601) {
 		for (i = 0; i < 16; i++) {
 			if (iosrtable[i] & SR601_T) {
 				pmap_kernel()->pm_sr[i] = iosrtable[i];

Reply via email to