Module Name:    src
Committed By:   mbalmer
Date:           Thu Jan 28 14:10:54 UTC 2010

Modified Files:
        src/sys/arch/amd64/include: pte.h
        src/sys/arch/news68k/dev: timer_hb.c
        src/sys/arch/powerpc/powerpc: trap_subr.S
        src/sys/arch/sun2/sun2: clock.c
        src/sys/arch/sun3/sun3: clock.c
        src/sys/arch/sun3/sun3x: clock.c

Log Message:
Fix language.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/amd64/include/pte.h
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/news68k/dev/timer_hb.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/powerpc/powerpc/trap_subr.S
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/sun2/sun2/clock.c
cvs rdiff -u -r1.61 -r1.62 src/sys/arch/sun3/sun3/clock.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/sun3/sun3x/clock.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/amd64/include/pte.h
diff -u src/sys/arch/amd64/include/pte.h:1.4 src/sys/arch/amd64/include/pte.h:1.5
--- src/sys/arch/amd64/include/pte.h:1.4	Wed Apr 16 21:51:03 2008
+++ src/sys/arch/amd64/include/pte.h	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: pte.h,v 1.4 2008/04/16 21:51:03 cegger Exp $	*/
+/*	$NetBSD: pte.h,v 1.5 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -42,7 +42,7 @@
  * amd64 MMU hardware structure:
  *
  * the (first generation) amd64 MMU is a 4-level MMU which maps 2^48 bytes
- * of  virtual memory. The  pagesize we use is is 4K (4096 [0x1000] bytes), 
+ * of  virtual memory. The  pagesize we use is 4K (4096 [0x1000] bytes), 
  * although 2M and 4M can be used as well. The indexes in the levels
  * are 9 bits wide (512 64bit entries per level), dividing the bits
  * 9-9-9-9-12.

Index: src/sys/arch/news68k/dev/timer_hb.c
diff -u src/sys/arch/news68k/dev/timer_hb.c:1.16 src/sys/arch/news68k/dev/timer_hb.c:1.17
--- src/sys/arch/news68k/dev/timer_hb.c:1.16	Wed Dec 10 14:19:02 2008
+++ src/sys/arch/news68k/dev/timer_hb.c	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: timer_hb.c,v 1.16 2008/12/10 14:19:02 tsutsui Exp $	*/
+/*	$NetBSD: timer_hb.c,v 1.17 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: timer_hb.c,v 1.16 2008/12/10 14:19:02 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: timer_hb.c,v 1.17 2010/01/28 14:10:54 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -139,7 +139,7 @@
 
 /*
  * Clock interrupt handler.
- * This is is called by the "custom" interrupt handler.
+ * This is called by the "custom" interrupt handler.
  *
  * from sun3/sun3x/clock.c -tsutsui
  */

Index: src/sys/arch/powerpc/powerpc/trap_subr.S
diff -u src/sys/arch/powerpc/powerpc/trap_subr.S:1.65 src/sys/arch/powerpc/powerpc/trap_subr.S:1.66
--- src/sys/arch/powerpc/powerpc/trap_subr.S:1.65	Fri Aug  1 16:32:03 2008
+++ src/sys/arch/powerpc/powerpc/trap_subr.S	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: trap_subr.S,v 1.65 2008/08/01 16:32:03 matt Exp $	*/
+/*	$NetBSD: trap_subr.S,v 1.66 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -312,7 +312,7 @@
 	addis	%r31,%r31,_C_LABEL(battable)@ha
 	ldreg	%r30,_C_LABEL(battable)+sz...@l(%r31)
 	mtcr	%r30
-	bf	25,1f			/* branch if Valid is is false,
+	bf	25,1f			/* branch if Valid is false,
 					   presently assumes supervisor only */
 
 	/* get batu */

Index: src/sys/arch/sun2/sun2/clock.c
diff -u src/sys/arch/sun2/sun2/clock.c:1.15 src/sys/arch/sun2/sun2/clock.c:1.16
--- src/sys/arch/sun2/sun2/clock.c:1.15	Sun Jul  6 13:29:50 2008
+++ src/sys/arch/sun2/sun2/clock.c	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: clock.c,v 1.15 2008/07/06 13:29:50 tsutsui Exp $	*/
+/*	$NetBSD: clock.c,v 1.16 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*
  * Copyright (c) 1982, 1990, 1993
@@ -85,7 +85,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.15 2008/07/06 13:29:50 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.16 2010/01/28 14:10:54 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -288,7 +288,7 @@
 }
 
 /*
- * This is is called by the "custom" interrupt handler.
+ * This is called by the "custom" interrupt handler.
  * Note that we can get ZS interrupts while this runs,
  * and zshard may touch the interrupt_reg, so we must
  * be careful to use the single_inst_* macros to modify

Index: src/sys/arch/sun3/sun3/clock.c
diff -u src/sys/arch/sun3/sun3/clock.c:1.61 src/sys/arch/sun3/sun3/clock.c:1.62
--- src/sys/arch/sun3/sun3/clock.c:1.61	Sat Mar 29 05:47:53 2008
+++ src/sys/arch/sun3/sun3/clock.c	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: clock.c,v 1.61 2008/03/29 05:47:53 tsutsui Exp $	*/
+/*	$NetBSD: clock.c,v 1.62 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*
  * Copyright (c) 1982, 1990, 1993
@@ -83,7 +83,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.61 2008/03/29 05:47:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.62 2010/01/28 14:10:54 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -294,7 +294,7 @@
 }
 
 /*
- * This is is called by the "custom" interrupt handler.
+ * This is called by the "custom" interrupt handler.
  * Note that we can get ZS interrupts while this runs,
  * and zshard may touch the interrupt_reg, so we must
  * be careful to use the single_inst_* macros to modify

Index: src/sys/arch/sun3/sun3x/clock.c
diff -u src/sys/arch/sun3/sun3x/clock.c:1.37 src/sys/arch/sun3/sun3x/clock.c:1.38
--- src/sys/arch/sun3/sun3x/clock.c:1.37	Sat Mar 29 05:47:53 2008
+++ src/sys/arch/sun3/sun3x/clock.c	Thu Jan 28 14:10:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: clock.c,v 1.37 2008/03/29 05:47:53 tsutsui Exp $	*/
+/*	$NetBSD: clock.c,v 1.38 2010/01/28 14:10:54 mbalmer Exp $	*/
 
 /*
  * Copyright (c) 1982, 1990, 1993
@@ -95,7 +95,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.37 2008/03/29 05:47:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.38 2010/01/28 14:10:54 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -411,7 +411,7 @@
  * XXX - Is it worth the trouble to save a few cycles here
  * by making two separate interrupt handlers?
  *
- * This is is called by the "custom" interrupt handler.
+ * This is called by the "custom" interrupt handler.
  * Note that we can get ZS interrupts while this runs,
  * and zshard may touch the interrupt_reg, so we must
  * be careful to use the single_inst_* macros to modify

Reply via email to