summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Cosgrove <tom@cvs.openbsd.org>2006-10-16 15:51:27 +0000
committerTom Cosgrove <tom@cvs.openbsd.org>2006-10-16 15:51:27 +0000
commit350d6caeb950ec163b01c4130d740fa1c8a08e0f (patch)
treec461219d5921bb37c72b9efb8f5a8d53f3326b71
parent4809c8fe09c0a966b59af026f6c234ac59cc5166 (diff)
Fix some more "is is"s. ok otto@.
-rw-r--r--sys/arch/amd64/include/pte.h4
-rw-r--r--sys/arch/i386/i386/mptramp.s4
-rw-r--r--sys/dev/wscons/wsdisplay_compat_usl.c4
-rw-r--r--sys/ufs/ffs/softdep.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/amd64/include/pte.h b/sys/arch/amd64/include/pte.h
index bc262c0d93e..c14138a7e45 100644
--- a/sys/arch/amd64/include/pte.h
+++ b/sys/arch/amd64/include/pte.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pte.h,v 1.4 2004/02/23 08:32:36 mickey Exp $ */
+/* $OpenBSD: pte.h,v 1.5 2006/10/16 15:51:26 tom Exp $ */
/* $NetBSD: pte.h,v 1.1 2003/04/26 18:39:47 fvdl Exp $ */
/*
@@ -43,7 +43,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.
diff --git a/sys/arch/i386/i386/mptramp.s b/sys/arch/i386/i386/mptramp.s
index 38e83191ff2..7ec527bd359 100644
--- a/sys/arch/i386/i386/mptramp.s
+++ b/sys/arch/i386/i386/mptramp.s
@@ -1,4 +1,4 @@
-/* $OpenBSD: mptramp.s,v 1.6 2006/04/27 15:37:51 mickey Exp $ */
+/* $OpenBSD: mptramp.s,v 1.7 2006/10/16 15:51:26 tom Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -226,7 +226,7 @@ _TRMP_LABEL(gdt_table)
GDTE(0x93,0xcf) # Kernel data
_TRMP_LABEL(gdt_desc)
.word 0x17 # limit 3 entries
- .long gdt_table # where is is gdt
+ .long gdt_table # where is gdt
_C_LABEL(cpu_spinup_trampoline_end): #end of code copied to MP_TRAMPOLINE
mp_cont:
diff --git a/sys/dev/wscons/wsdisplay_compat_usl.c b/sys/dev/wscons/wsdisplay_compat_usl.c
index 936ab2d62ef..95318121648 100644
--- a/sys/dev/wscons/wsdisplay_compat_usl.c
+++ b/sys/dev/wscons/wsdisplay_compat_usl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplay_compat_usl.c,v 1.17 2006/07/29 12:52:40 miod Exp $ */
+/* $OpenBSD: wsdisplay_compat_usl.c,v 1.18 2006/10/16 15:51:26 tom Exp $ */
/* $NetBSD: wsdisplay_compat_usl.c,v 1.12 2000/03/23 07:01:47 thorpej Exp $ */
/*
@@ -181,7 +181,7 @@ usl_detachproc(cookie, waitok, callback, cbarg)
/*
* Normally, this is called from the controlling process.
- * Is is supposed to reply with a VT_RELDISP ioctl(), so
+ * It is supposed to reply with a VT_RELDISP ioctl(), so
* it is not useful to tsleep() here.
*/
sd->s_callback = callback;
diff --git a/sys/ufs/ffs/softdep.h b/sys/ufs/ffs/softdep.h
index 77d80c334df..6aed25804c7 100644
--- a/sys/ufs/ffs/softdep.h
+++ b/sys/ufs/ffs/softdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: softdep.h,v 1.12 2006/07/11 21:17:58 mickey Exp $ */
+/* $OpenBSD: softdep.h,v 1.13 2006/10/16 15:51:26 tom Exp $ */
/*
* Copyright 1998, 2000 Marshall Kirk McKusick. All Rights Reserved.
@@ -406,7 +406,7 @@ struct allocindir {
* The "freefrag" structure is constructed and attached when the replacement
* block is first allocated. It is processed after the inode claiming the
* bigger block that replaces it has been written to disk. Note that the
- * ff_state field is is used to store the uid, so may lose data. However,
+ * ff_state field is used to store the uid, so may lose data. However,
* the uid is used only in printing an error message, so is not critical.
* Keeping it in a short keeps the data structure down to 32 bytes.
*/