summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-11-03 07:01:34 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-11-03 07:01:34 +0000
commitc60690c35abf5f19d857860d5a0407f5ca76b808 (patch)
tree267ae92f13f58b93a3b55aff6e434d2e88305c03 /sys/arch
parente5df97bba2407e5d0768d899f71db99f882da1c1 (diff)
spelling fixes (in the comments)
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc/dev/amd7930.c4
-rw-r--r--sys/arch/sparc/dev/hmereg.h4
-rw-r--r--sys/arch/sparc/sparc/cpuvar.h4
-rw-r--r--sys/arch/sparc/sparc/pmap.c6
-rw-r--r--sys/arch/sparc/stand/common/clean-elf.c4
-rw-r--r--sys/arch/sparc64/sparc64/cpuvar.h4
-rw-r--r--sys/arch/sparc64/sparc64/emul.c4
-rw-r--r--sys/arch/sparc64/sparc64/pmap.c4
8 files changed, 17 insertions, 17 deletions
diff --git a/sys/arch/sparc/dev/amd7930.c b/sys/arch/sparc/dev/amd7930.c
index 41983c4cf13..3820a6b26bb 100644
--- a/sys/arch/sparc/dev/amd7930.c
+++ b/sys/arch/sparc/dev/amd7930.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: amd7930.c,v 1.26 2003/06/28 20:53:02 deraadt Exp $ */
+/* $OpenBSD: amd7930.c,v 1.27 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: amd7930.c,v 1.37 1998/03/30 14:23:40 pk Exp $ */
/*
@@ -68,7 +68,7 @@ struct amd7930_softc {
struct intrhand sc_swih; /* software interrupt vector */
int sc_open; /* single use device */
- int sc_locked; /* true when transfering data */
+ int sc_locked; /* true when transferring data */
struct mapreg sc_map; /* current contents of map registers */
u_char sc_rlevel; /* record level */
diff --git a/sys/arch/sparc/dev/hmereg.h b/sys/arch/sparc/dev/hmereg.h
index 062c024cf65..7ca3b6df891 100644
--- a/sys/arch/sparc/dev/hmereg.h
+++ b/sys/arch/sparc/dev/hmereg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hmereg.h,v 1.9 2003/06/02 18:40:59 jason Exp $ */
+/* $OpenBSD: hmereg.h,v 1.10 2003/11/03 07:01:33 david Exp $ */
/*
* Copyright (c) 1998 Jason L. Wright (jason@thought.net)
@@ -344,7 +344,7 @@ struct hme_rxd {
};
#define HME_RXD_OWN 0x80000000 /* desc owner: 1=hw,0=sw */
#define HME_RXD_OVERFLOW 0x40000000 /* 1 = buffer over flow */
-#define HME_RXD_SIZE 0x3fff0000 /* desciptor size */
+#define HME_RXD_SIZE 0x3fff0000 /* descriptor size */
#define HME_RXD_CSUM 0x0000ffff /* checksum mask */
struct hme_txd {
diff --git a/sys/arch/sparc/sparc/cpuvar.h b/sys/arch/sparc/sparc/cpuvar.h
index 86a39b6d872..594b7d888fc 100644
--- a/sys/arch/sparc/sparc/cpuvar.h
+++ b/sys/arch/sparc/sparc/cpuvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpuvar.h,v 1.8 2002/03/14 01:26:44 millert Exp $ */
+/* $OpenBSD: cpuvar.h,v 1.9 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: cpuvar.h,v 1.4 1997/07/06 21:14:25 pk Exp $ */
/*
@@ -81,7 +81,7 @@ struct module_info {
* The cpu_softc structure. This structure maintains information about one
* currently installed CPU (there may be several of these if the machine
* supports multiple CPUs, as on some Sun4m architectures). The information
- * in this structure supercedes the old "cpumod", "mmumod", and similar
+ * in this structure supersedes the old "cpumod", "mmumod", and similar
* fields.
*/
diff --git a/sys/arch/sparc/sparc/pmap.c b/sys/arch/sparc/sparc/pmap.c
index 2488c7d087e..82c1a36fa43 100644
--- a/sys/arch/sparc/sparc/pmap.c
+++ b/sys/arch/sparc/sparc/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.134 2003/04/06 22:50:37 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.135 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: pmap.c,v 1.118 1998/05/19 19:00:18 thorpej Exp $ */
/*
@@ -2702,7 +2702,7 @@ pmap_bootstrap4_4c(nctx, nregion, nsegment)
#endif
/*
- * Intialize the kernel pmap.
+ * Initialize the kernel pmap.
*/
/* kernel_pmap_store.pm_ctxnum = 0; */
simple_lock_init(&kernel_pmap_store.pm_lock);
@@ -3004,7 +3004,7 @@ pmap_bootstrap4m(void)
#endif /* defined Sun4/Sun4c */
/*
- * Intialize the kernel pmap.
+ * Initialize the kernel pmap.
*/
/* kernel_pmap_store.pm_ctxnum = 0; */
simple_lock_init(&kernel_pmap_store.pm_lock);
diff --git a/sys/arch/sparc/stand/common/clean-elf.c b/sys/arch/sparc/stand/common/clean-elf.c
index b7a3b240589..b75794aba47 100644
--- a/sys/arch/sparc/stand/common/clean-elf.c
+++ b/sys/arch/sparc/stand/common/clean-elf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clean-elf.c,v 1.1 2002/08/11 12:19:47 art Exp $ */
+/* $OpenBSD: clean-elf.c,v 1.2 2003/11/03 07:01:33 david Exp $ */
/*
* Public domain. I don't even want my name on this.
*/
@@ -20,7 +20,7 @@ elf_is_okay(Elf_Ehdr *ehdr)
* We need to check magic, class size, endianess,
* and version before we look at the rest of the
* Elf_Ehdr structure. These few elements are
- * represented in a machine independant fashion.
+ * represented in a machine independent fashion.
*/
if (IS_ELF(*ehdr) &&
diff --git a/sys/arch/sparc64/sparc64/cpuvar.h b/sys/arch/sparc64/sparc64/cpuvar.h
index fa6f3330c55..6437f636184 100644
--- a/sys/arch/sparc64/sparc64/cpuvar.h
+++ b/sys/arch/sparc64/sparc64/cpuvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpuvar.h,v 1.4 2002/06/15 17:23:31 art Exp $ */
+/* $OpenBSD: cpuvar.h,v 1.5 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: cpuvar.h,v 1.2 1999/11/06 20:18:13 eeh Exp $ */
/*
@@ -48,7 +48,7 @@
* The cpu_softc structure. This structure maintains information about one
* currently installed CPU (there may be several of these if the machine
* supports multiple CPUs, as on some Sun4m architectures). The information
- * in this structure supercedes the old "cpumod", "mmumod", and similar
+ * in this structure supersedes the old "cpumod", "mmumod", and similar
* fields.
*/
diff --git a/sys/arch/sparc64/sparc64/emul.c b/sys/arch/sparc64/sparc64/emul.c
index 2d29c83cbdc..40633b5be45 100644
--- a/sys/arch/sparc64/sparc64/emul.c
+++ b/sys/arch/sparc64/sparc64/emul.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: emul.c,v 1.11 2003/07/14 00:05:35 jason Exp $ */
+/* $OpenBSD: emul.c,v 1.12 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: emul.c,v 1.8 2001/06/29 23:58:40 eeh Exp $ */
/*-
@@ -507,7 +507,7 @@ emul_qf(int32_t insv, struct proc *p, union sigval sv, struct trapframe *tf)
addr += tf->tf_global[ins.i_asi.i_rs2];
if (asi < ASI_PRIMARY) {
- /* priviledged asi */
+ /* privileged asi */
trapsignal(p, SIGILL, 0, ILL_PRVOPC, sv);
return (0);
}
diff --git a/sys/arch/sparc64/sparc64/pmap.c b/sys/arch/sparc64/sparc64/pmap.c
index a8d10f3cfd9..e7aa1029d36 100644
--- a/sys/arch/sparc64/sparc64/pmap.c
+++ b/sys/arch/sparc64/sparc64/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.25 2003/06/03 17:16:33 art Exp $ */
+/* $OpenBSD: pmap.c,v 1.26 2003/11/03 07:01:33 david Exp $ */
/* $NetBSD: pmap.c,v 1.107 2001/08/31 16:47:41 eeh Exp $ */
#undef NO_VCACHE /* Don't forget the locked TLB in dostart */
/*
@@ -2646,7 +2646,7 @@ pmap_dumpmmu(dump, blkno)
}
/*
- * Determine (non)existance of physical page
+ * Determine (non)existence of physical page
*/
int pmap_pa_exists(pa)
paddr_t pa;