summaryrefslogtreecommitdiff
path: root/sys/dev/ic/rtl81x9.c
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2003-10-21 18:58:51 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2003-10-21 18:58:51 +0000
commit09533afdf9d8765c07281cc781bb793add772fff (patch)
tree127756d1f0b3ef0d9b54bf585b52cfde1d7f8a28 /sys/dev/ic/rtl81x9.c
parent8340012e43d3e836557b3ef5cce99f0b05419e90 (diff)
typos from Tom Cosgrove;
Tom: I did not commit a couple of your changes. i did not include some punctuation fixes (full stops, etc.) mnemorable -> mnemonic: i decided memorable was probably better instrunctions -> instruction: i kept the plural
Diffstat (limited to 'sys/dev/ic/rtl81x9.c')
-rw-r--r--sys/dev/ic/rtl81x9.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/rtl81x9.c b/sys/dev/ic/rtl81x9.c
index 6d4844ce1ac..8d5649ba8f6 100644
--- a/sys/dev/ic/rtl81x9.c
+++ b/sys/dev/ic/rtl81x9.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rtl81x9.c,v 1.21 2003/10/01 23:37:12 fgsch Exp $ */
+/* $OpenBSD: rtl81x9.c,v 1.22 2003/10/21 18:58:49 jmc Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -594,7 +594,7 @@ rl_list_tx_init(sc)
* attempt to document it here. The driver provides a buffer area and
* places its base address in the RX buffer start address register.
* The chip then begins copying frames into the RX buffer. Each frame
- * is preceeded by a 32-bit RX status word which specifies the length
+ * is preceded by a 32-bit RX status word which specifies the length
* of the frame and certain other status bits. Each frame (starting with
* the status word) is also 32-bit aligned. The frame length is in the
* first 16 bits of the status word; the lower 15 bits correspond with
@@ -607,7 +607,7 @@ rl_list_tx_init(sc)
* The reason we do this is because m_devget() doesn't let us specify an
* offset into the mbuf storage space, so we have to artificially create
* one. The ring is allocated in such a way that there are a few unused
- * bytes of space preceecing it so that it will be safe for us to do the
+ * bytes of space preceding it so that it will be safe for us to do the
* 2-byte backstep even if reading from the ring at offset 0.
*/
void
@@ -871,7 +871,7 @@ int rl_encap(sc, m_head)
/* Pad frames to at least 60 bytes. */
if (m_head->m_pkthdr.len < RL_MIN_FRAMELEN) {
/*
- * Make security concious people happy: zero out the
+ * Make security-conscious people happy: zero out the
* bytes in the pad area, since we don't know what
* this mbuf cluster buffer's previous user might
* have left in it.
@@ -1362,7 +1362,7 @@ rl_miibus_readreg(self, phy, reg)
if (sc->rl_type == RL_8139) {
/*
- * The RTL8139 PHY is mapped into PCI registers, unforunately
+ * The RTL8139 PHY is mapped into PCI registers, unfortunately
* it has no phyid, or phyaddr, so assume it is phyaddr 0.
*/
if (phy != 0)