Module Name:    src
Committed By:   skrll
Date:           Thu Sep 10 17:26:38 UTC 2020

Modified Files:
        src/sys/arch/mips/mips: pmap_machdep.c

Log Message:
Typo in a comment


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/mips/mips/pmap_machdep.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/mips/mips/pmap_machdep.c
diff -u src/sys/arch/mips/mips/pmap_machdep.c:1.29 src/sys/arch/mips/mips/pmap_machdep.c:1.30
--- src/sys/arch/mips/mips/pmap_machdep.c:1.29	Tue Aug 18 11:21:25 2020
+++ src/sys/arch/mips/mips/pmap_machdep.c	Thu Sep 10 17:26:38 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap_machdep.c,v 1.29 2020/08/18 11:21:25 simonb Exp $	*/
+/*	$NetBSD: pmap_machdep.c,v 1.30 2020/09/10 17:26:38 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.29 2020/08/18 11:21:25 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.30 2020/09/10 17:26:38 skrll Exp $");
 
 /*
  *	Manages physical address maps.
@@ -398,7 +398,7 @@ pmap_bootstrap(void)
 	/* XXX: else runs out of space on 256MB sbmips!! */
 	sysmap_size += 20000;
 #endif
-	/* Rounup to a even number of pte page tables */
+	/* Roundup to a even number of pte page tables */
 	sysmap_size = (sysmap_size + NPTEPG - 1) & -NPTEPG;
 
 	/*

Reply via email to