summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>2002-06-14 21:35:02 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>2002-06-14 21:35:02 +0000
commit592b4684a393f187ed17f2dbde89e7e974b93bec (patch)
tree27021a1a3a7da6ee5ba8051ad9cddf8203ff8263 /sys/dev
parent44ce7129fce40e129e05c87cdc90ad808c587ea4 (diff)
spelling; from Brian Poole <raj@cerias.purdue.edu>
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ata/atareg.h6
-rw-r--r--sys/dev/ic/advlib.h6
-rw-r--r--sys/dev/ic/aic7xxx.c4
-rw-r--r--sys/dev/ic/fxp.c4
-rw-r--r--sys/dev/ic/gem.c6
-rw-r--r--sys/dev/ic/hme.c4
-rw-r--r--sys/dev/ic/if_wi_ieee.h4
-rw-r--r--sys/dev/ic/lsi64854var.h4
-rw-r--r--sys/dev/ic/ncr5380sbc.c4
-rw-r--r--sys/dev/isa/ad1848.c6
-rw-r--r--sys/dev/isa/pas.c4
-rw-r--r--sys/dev/pci/if_bge.c4
-rw-r--r--sys/dev/raidframe/rf_dag.h4
-rw-r--r--sys/dev/sbus/be.c4
-rw-r--r--sys/dev/sbus/sbusvar.h4
-rw-r--r--sys/dev/sbus/spifreg.h4
16 files changed, 36 insertions, 36 deletions
diff --git a/sys/dev/ata/atareg.h b/sys/dev/ata/atareg.h
index 23e75516a50..fee6f77cdfe 100644
--- a/sys/dev/ata/atareg.h
+++ b/sys/dev/ata/atareg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: atareg.h,v 1.5 2002/03/27 17:42:37 gluk Exp $ */
+/* $OpenBSD: atareg.h,v 1.6 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: atareg.h,v 1.5 1999/01/18 20:06:24 bouyer Exp $ */
#ifndef __DEV_ATA_ATAREG_H__
@@ -122,7 +122,7 @@ struct ataparams {
#define WDC_VER_ATA13 0x2000
#define WDC_VER_ATA14 0x4000
u_int16_t atap_ata_minor; /* 81: Minor version number */
- u_int16_t atap_cmd_set1; /* 82: command set suported */
+ u_int16_t atap_cmd_set1; /* 82: command set supported */
#define WDC_CMD1_NOP 0x4000
#define WDC_CMD1_RB 0x2000
#define WDC_CMD1_WB 0x1000
@@ -137,7 +137,7 @@ struct ataparams {
#define WDC_CMD1_REMOV 0x0004
#define WDC_CMD1_SEC 0x0002
#define WDC_CMD1_SMART 0x0001
- u_int16_t atap_cmd_set2; /* 83: command set suported */
+ u_int16_t atap_cmd_set2; /* 83: command set supported */
#define ATAPI_CMD2_FCE 0x2000 /* Flush Cache Ext supported */
#define ATAPI_CMD2_FC 0x1000 /* Flush Cache supported */
#define ATAPI_CMD2_DCO 0x0800 /* Device Configuration Overlay supported */
diff --git a/sys/dev/ic/advlib.h b/sys/dev/ic/advlib.h
index e0b4c92a874..bad5641e250 100644
--- a/sys/dev/ic/advlib.h
+++ b/sys/dev/ic/advlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: advlib.h,v 1.6 2002/03/14 01:26:53 millert Exp $ */
+/* $OpenBSD: advlib.h,v 1.7 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: advlib.h,v 1.5 1998/10/28 20:39:46 dante Exp $ */
/*
@@ -449,10 +449,10 @@ typedef struct asc_scisq_1
u_int8_t sg_queue_cnt; /* number of SG entries */
u_int8_t target_id;
u_int8_t target_lun;
- u_int32_t data_addr; /* physical address of first segment to transef */
+ u_int32_t data_addr; /* physical address of first segment to transfer */
u_int32_t data_cnt; /* byte count of first segment to transfer */
u_int32_t sense_addr; /* physical address of the sense buffer */
- u_int8_t sense_len; /* lenght of sense buffer */
+ u_int8_t sense_len; /* length of sense buffer */
u_int8_t extra_bytes;
} ASC_SCSIQ_1;
diff --git a/sys/dev/ic/aic7xxx.c b/sys/dev/ic/aic7xxx.c
index 5b127c6401f..428be419620 100644
--- a/sys/dev/ic/aic7xxx.c
+++ b/sys/dev/ic/aic7xxx.c
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.c,v 1.40 2000/01/07 23:08:17 gibbs Exp $
- * $OpenBSD: aic7xxx.c,v 1.38 2002/03/26 00:56:10 krw Exp $
+ * $OpenBSD: aic7xxx.c,v 1.39 2002/06/14 21:34:59 todd Exp $
*/
/*
* A few notes on features of the driver.
@@ -1052,7 +1052,7 @@ ahc_xxx_reset(devname, iot, ioh)
#ifdef AHC_DUMP_SEQ
ahc_dumpseq(ahc);
#endif
- /* Retain the IRQ type accross the chip reset */
+ /* Retain the IRQ type across the chip reset */
hcntrl = (bus_space_read_1(iot, ioh, HCNTRL) & IRQMS) | INTEN;
bus_space_write_1(iot, ioh, HCNTRL, CHIPRST | PAUSE);
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c
index 859f48d9f46..f7a35e9c1e3 100644
--- a/sys/dev/ic/fxp.c
+++ b/sys/dev/ic/fxp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fxp.c,v 1.38 2002/06/09 03:14:18 todd Exp $ */
+/* $OpenBSD: fxp.c,v 1.39 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */
/*
@@ -915,7 +915,7 @@ fxp_stats_update(arg)
* then assume the receiver has locked up and attempt to clear
* the condition by reprogramming the multicast filter. This is
* a work-around for a bug in the 82557 where the receiver locks
- * up if it gets certain types of garbage in the syncronization
+ * up if it gets certain types of garbage in the synchronization
* bits prior to the packet header. This bug is supposed to only
* occur in 10Mbps mode, but has been seen to occur in 100Mbps
* mode as well (perhaps due to a 10/100 speed transition).
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c
index 20b3564ac25..1797196fce0 100644
--- a/sys/dev/ic/gem.c
+++ b/sys/dev/ic/gem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gem.c,v 1.24 2002/06/09 03:38:40 drahn Exp $ */
+/* $OpenBSD: gem.c,v 1.25 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: gem.c,v 1.1 2001/09/16 00:11:43 eeh Exp $ */
/*
@@ -259,7 +259,7 @@ gem_config(sc)
* connector.
*/
if (child->mii_phy > 1 || child->mii_inst > 1) {
- printf("%s: cannot accomodate MII device %s"
+ printf("%s: cannot accommodate MII device %s"
" at phy %d, instance %d\n",
sc->sc_dev.dv_xname,
child->mii_dev.dv_xname,
@@ -819,7 +819,7 @@ gem_init(struct ifnet *ifp)
(*sc->sc_hwinit)(sc);
- /* step 15. Give the reciever a swift kick */
+ /* step 15. Give the receiver a swift kick */
bus_space_write_4(t, h, GEM_RX_KICK, GEM_NRXDESC-4);
/* Start the one second timer. */
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c
index 979f229ca43..5f1a0350d3d 100644
--- a/sys/dev/ic/hme.c
+++ b/sys/dev/ic/hme.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hme.c,v 1.15 2002/06/05 22:13:18 fgsch Exp $ */
+/* $OpenBSD: hme.c,v 1.16 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: hme.c,v 1.21 2001/07/07 15:59:37 thorpej Exp $ */
/*-
@@ -275,7 +275,7 @@ hme_config(sc)
* connector.
*/
if (child->mii_phy > 1 || child->mii_inst > 1) {
- printf("%s: cannot accomodate MII device %s"
+ printf("%s: cannot accommodate MII device %s"
" at phy %d, instance %d\n",
sc->sc_dev.dv_xname,
child->mii_dev.dv_xname,
diff --git a/sys/dev/ic/if_wi_ieee.h b/sys/dev/ic/if_wi_ieee.h
index 7ce194f472b..047a153dbf4 100644
--- a/sys/dev/ic/if_wi_ieee.h
+++ b/sys/dev/ic/if_wi_ieee.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi_ieee.h,v 1.8 2002/06/02 16:11:41 millert Exp $ */
+/* $OpenBSD: if_wi_ieee.h,v 1.9 2002/06/14 21:34:59 todd Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -380,7 +380,7 @@ struct wi_ltv_keys {
*/
/*
- * standard hermes recieve frame used by wavelan/prism2 cards
+ * standard hermes receive frame used by wavelan/prism2 cards
*/
struct wi_rx_frame {
/*
diff --git a/sys/dev/ic/lsi64854var.h b/sys/dev/ic/lsi64854var.h
index 132af9fe203..ece40308f7e 100644
--- a/sys/dev/ic/lsi64854var.h
+++ b/sys/dev/ic/lsi64854var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lsi64854var.h,v 1.3 2002/03/14 01:26:54 millert Exp $ */
+/* $OpenBSD: lsi64854var.h,v 1.4 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: lsi64854var.h,v 1.4 2001/03/29 02:58:39 petrov Exp $ */
/*-
@@ -44,7 +44,7 @@ struct lsi64854_softc {
bus_space_handle_t sc_regs; /* the registers */
u_int sc_rev; /* revision */
- int sc_burst; /* max suported burst size */
+ int sc_burst; /* max supported burst size */
int sc_channel;
#define L64854_CHANNEL_SCSI 1
diff --git a/sys/dev/ic/ncr5380sbc.c b/sys/dev/ic/ncr5380sbc.c
index fa4f4125ee1..68c81ee8e09 100644
--- a/sys/dev/ic/ncr5380sbc.c
+++ b/sys/dev/ic/ncr5380sbc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ncr5380sbc.c,v 1.15 2002/03/14 03:16:05 millert Exp $ */
+/* $OpenBSD: ncr5380sbc.c,v 1.16 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: ncr5380sbc.c,v 1.13 1996/10/13 01:37:25 christos Exp $ */
/*
@@ -1507,7 +1507,7 @@ success:
/*
* The message system:
*
- * This is a revamped message system that now should easier accomodate
+ * This is a revamped message system that now should easier accommodate
* new messages, if necessary.
*
* Currently we accept these messages:
diff --git a/sys/dev/isa/ad1848.c b/sys/dev/isa/ad1848.c
index 0c243868cf3..79f2786e029 100644
--- a/sys/dev/isa/ad1848.c
+++ b/sys/dev/isa/ad1848.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ad1848.c,v 1.25 2002/03/14 01:26:56 millert Exp $ */
+/* $OpenBSD: ad1848.c,v 1.26 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: ad1848.c,v 1.45 1998/01/30 02:02:38 augustss Exp $ */
/*
@@ -1265,7 +1265,7 @@ ad1848_commit_settings(addr)
(void)ADREAD(sc, AD1848_IDATA);
(void)ADREAD(sc, AD1848_IDATA);
/*
- * Write to I8 starts resyncronization. Wait until it completes.
+ * Write to I8 starts resynchronization. Wait until it completes.
*/
timeout = 100000;
while (timeout > 0 && ADREAD(sc, AD1848_IADDR) == SP_IN_INIT)
@@ -1280,7 +1280,7 @@ ad1848_commit_settings(addr)
/* Now wait for resync for capture side of the house */
}
/*
- * Write to I8 starts resyncronization. Wait until it completes.
+ * Write to I8 starts resynchronization. Wait until it completes.
*/
timeout = 100000;
while (timeout > 0 && ADREAD(sc, AD1848_IADDR) == SP_IN_INIT)
diff --git a/sys/dev/isa/pas.c b/sys/dev/isa/pas.c
index df407777a5e..76e8be0ecc2 100644
--- a/sys/dev/isa/pas.c
+++ b/sys/dev/isa/pas.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pas.c,v 1.22 2002/03/14 01:26:56 millert Exp $ */
+/* $OpenBSD: pas.c,v 1.23 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: pas.c,v 1.37 1998/01/12 09:43:43 thorpej Exp $ */
/*
@@ -43,7 +43,7 @@
*/
/*
* Todo:
- * - look at other PAS drivers (for PAS native suport)
+ * - look at other PAS drivers (for PAS native support)
* - use common sb.c once emulation is setup
*/
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 13912181dc6..5d883d95a56 100644
--- a/sys/dev/pci/if_bge.c
+++ b/sys/dev/pci/if_bge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bge.c,v 1.12 2002/04/29 15:25:38 nate Exp $ */
+/* $OpenBSD: if_bge.c,v 1.13 2002/06/14 21:34:59 todd Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
* Copyright (c) 1997, 1998, 1999, 2001
@@ -1812,7 +1812,7 @@ bge_reset(sc)
* on the receive return list.
*
* Note: we have to be able to handle two possibilities here:
- * 1) the frame is from the jumbo recieve ring
+ * 1) the frame is from the jumbo receive ring
* 2) the frame is from the standard receive ring
*/
diff --git a/sys/dev/raidframe/rf_dag.h b/sys/dev/raidframe/rf_dag.h
index 4200e3bb193..6221d88fbd4 100644
--- a/sys/dev/raidframe/rf_dag.h
+++ b/sys/dev/raidframe/rf_dag.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rf_dag.h,v 1.2 1999/02/16 00:02:28 niklas Exp $ */
+/* $OpenBSD: rf_dag.h,v 1.3 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: rf_dag.h,v 1.3 1999/02/05 00:06:07 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
@@ -222,7 +222,7 @@ struct RF_DagList_s {
(_h_)->status = rf_enable; \
}
-/* convience macro for declaring a create dag function */
+/* convenience macro for declaring a create dag function */
#define RF_CREATE_DAG_FUNC_DECL(_name_) \
void _name_ ( \
diff --git a/sys/dev/sbus/be.c b/sys/dev/sbus/be.c
index 70b85b8efd2..ce8734d2464 100644
--- a/sys/dev/sbus/be.c
+++ b/sys/dev/sbus/be.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: be.c,v 1.8 2002/03/14 01:27:02 millert Exp $ */
+/* $OpenBSD: be.c,v 1.9 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: be.c,v 1.26 2001/03/20 15:39:20 pk Exp $ */
/*-
@@ -402,7 +402,7 @@ beattach(parent, self, aux)
#endif
if (child->mii_phy != BE_PHY_EXTERNAL ||
child->mii_inst > 0) {
- printf("%s: cannot accomodate MII device %s"
+ printf("%s: cannot accommodate MII device %s"
" at phy %d, instance %d\n",
sc->sc_dev.dv_xname,
child->mii_dev.dv_xname,
diff --git a/sys/dev/sbus/sbusvar.h b/sys/dev/sbus/sbusvar.h
index c0c00cdd002..7784d8ff847 100644
--- a/sys/dev/sbus/sbusvar.h
+++ b/sys/dev/sbus/sbusvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbusvar.h,v 1.5 2002/03/14 01:27:02 millert Exp $ */
+/* $OpenBSD: sbusvar.h,v 1.6 2002/06/14 21:34:59 todd Exp $ */
/* $NetBSD: sbusvar.h,v 1.11 2000/11/01 06:18:45 eeh Exp $ */
/*-
@@ -65,7 +65,7 @@ struct sbus_intr {
u_int32_t sbi_vec; /* vector (always 0?) */
};
-/* Address translation accross busses */
+/* Address translation across busses */
struct sbus_range {
u_int32_t cspace; /* Client space */
u_int32_t coffset; /* Client offset */
diff --git a/sys/dev/sbus/spifreg.h b/sys/dev/sbus/spifreg.h
index 9282565439d..17672851d24 100644
--- a/sys/dev/sbus/spifreg.h
+++ b/sys/dev/sbus/spifreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: spifreg.h,v 1.2 2002/04/08 17:49:42 jason Exp $ */
+/* $OpenBSD: spifreg.h,v 1.3 2002/06/14 21:34:59 todd Exp $ */
/*
* Copyright (c) 1999-2002 Jason L. Wright (jason@thought.net)
@@ -303,7 +303,7 @@
*
* The *iack registers are read/written with the IACK bit set. When
* the interrupt routine starts, it reads the MRAR, TRAR, and RRAR registers
- * from this mapping. This signals an interrupt acknowlegement cycle.
+ * from this mapping. This signals an interrupt acknowledgement cycle.
* (NOTE: these are not really the MRAR, TRAR, and RRAR... They are copies
* of the GSVR, I just mapped them to the same location as the mrar, trar,
* and rrar because it seemed appropriate).