diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-10-21 18:58:51 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-10-21 18:58:51 +0000 |
commit | 09533afdf9d8765c07281cc781bb793add772fff (patch) | |
tree | 127756d1f0b3ef0d9b54bf585b52cfde1d7f8a28 /sys/dev/ic/lemac.c | |
parent | 8340012e43d3e836557b3ef5cce99f0b05419e90 (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/lemac.c')
-rw-r--r-- | sys/dev/ic/lemac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/lemac.c b/sys/dev/ic/lemac.c index 4d0a70559b3..1c50e0b28bf 100644 --- a/sys/dev/ic/lemac.c +++ b/sys/dev/ic/lemac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lemac.c,v 1.3 2002/05/07 19:28:59 nate Exp $ */ +/* $OpenBSD: lemac.c,v 1.4 2003/10/21 18:58:49 jmc Exp $ */ /* $NetBSD: lemac.c,v 1.20 2001/06/13 10:46:02 wiz Exp $ */ /*- @@ -153,7 +153,7 @@ lemac_rxd_intr(struct lemac_softc *sc, unsigned cs_value) } /* - * Error during initializion. Mark card as disabled. + * Error during initialization. Mark card as disabled. */ printf("%s: recovery failed -- board disabled\n", sc->sc_if.if_xname); } @@ -410,7 +410,7 @@ lemac_read_macaddr(unsigned char *hwaddr, const bus_space_tag_t iot, hwaddr[0] = bus_space_read_1(iot, ioh, ioreg); hwaddr[1] = bus_space_read_1(iot, ioh, ioreg); - /* hardware adddress can't be multicast */ + /* hardware address can't be multicast */ if (hwaddr[0] & 1) return (-1); |