summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
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/sparc
parente5df97bba2407e5d0768d899f71db99f882da1c1 (diff)
spelling fixes (in the comments)
Diffstat (limited to 'sys/arch/sparc')
-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
5 files changed, 11 insertions, 11 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) &&