diff options
| author | wiz <wiz@NetBSD.org> | 2003-02-02 10:24:38 +0000 |
|---|---|---|
| committer | wiz <wiz@NetBSD.org> | 2003-02-02 10:24:38 +0000 |
| commit | cd68fb44fb313f983f0e34147f57086645e19049 (patch) | |
| tree | ec14d47c057b809622bc0dc4bcf983124abd0cf4 /sys/dev | |
| parent | 3ac7ce187da78a4a36ebd3604187fffa6524bc26 (diff) | |
guarantee, not guarentee. Idea from miod@openbsd.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/cs89x0.c | 6 | ||||
| -rw-r--r-- | sys/dev/isa/cs89x0isa.c | 8 | ||||
| -rw-r--r-- | sys/dev/std/ieee1212.c | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/ic/cs89x0.c b/sys/dev/ic/cs89x0.c index a1096a9f47a..abb14d67f60 100644 --- a/sys/dev/ic/cs89x0.c +++ b/sys/dev/ic/cs89x0.c @@ -1,4 +1,4 @@ -/* $NetBSD: cs89x0.c,v 1.7 2003/01/06 13:05:09 wiz Exp $ */ +/* $NetBSD: cs89x0.c,v 1.8 2003/02/02 10:24:40 wiz Exp $ */ /* * Copyright 1997 @@ -186,7 +186,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cs89x0.c,v 1.7 2003/01/06 13:05:09 wiz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cs89x0.c,v 1.8 2003/02/02 10:24:40 wiz Exp $"); #include "opt_inet.h" @@ -1627,7 +1627,7 @@ cs_process_rx_early(struct cs_softc *sc) } m->m_pkthdr.rcvif = ifp; /* - * save processing by always using a mbuf cluster, guarenteed to fit + * save processing by always using a mbuf cluster, guaranteed to fit * packet */ MCLGET(m, M_DONTWAIT); diff --git a/sys/dev/isa/cs89x0isa.c b/sys/dev/isa/cs89x0isa.c index f0c77cc6aaf..21bee8f43ab 100644 --- a/sys/dev/isa/cs89x0isa.c +++ b/sys/dev/isa/cs89x0isa.c @@ -1,4 +1,4 @@ -/* $NetBSD: cs89x0isa.c,v 1.4 2002/09/27 15:37:22 provos Exp $ */ +/* $NetBSD: cs89x0isa.c,v 1.5 2003/02/02 10:24:40 wiz Exp $ */ /* * Copyright 1997 @@ -36,7 +36,7 @@ /* isa dma routines for cs89x0 */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cs89x0isa.c,v 1.4 2002/09/27 15:37:22 provos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cs89x0isa.c,v 1.5 2003/02/02 10:24:40 wiz Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -197,7 +197,7 @@ void cs_process_rx_dma(struct cs_softc *sc) /* * Get the length and status of the packet. Only the - * status is guarenteed to be at dma_mem_ptr, ie need + * status is guaranteed to be at dma_mem_ptr, ie need * to check for wraparound before reading the length */ status = *((unsigned short *) dma_mem_ptr)++; @@ -256,7 +256,7 @@ void cs_process_rx_dma(struct cs_softc *sc) } /* * save processing by always using a mbuf - * cluster, guarenteed to fit packet + * cluster, guaranteed to fit packet */ MCLGET(m, M_DONTWAIT); if ((m->m_flags & M_EXT) == 0) { diff --git a/sys/dev/std/ieee1212.c b/sys/dev/std/ieee1212.c index f751e8dcc9e..64d3675597a 100644 --- a/sys/dev/std/ieee1212.c +++ b/sys/dev/std/ieee1212.c @@ -1,4 +1,4 @@ -/* $NetBSD: ieee1212.c,v 1.4 2003/02/01 06:50:42 ichiro Exp $ */ +/* $NetBSD: ieee1212.c,v 1.5 2003/02/02 10:24:41 wiz Exp $ */ /* * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -78,7 +78,7 @@ int p1212debug = 1; * return -1 on error, or 0 on success and possibly reset *size to a larger * value. * - * NOTE: Rom's are guarentee'd per the ISO spec to be contiguous but only the + * NOTE: Rom's are guaranteed per the ISO spec to be contiguous but only the * first 1k is directly mapped. Anything past 1k is supposed to use a loop * around the indirect registers to read in the rom. This code only assumes the * buffer passed in represents a total rom regardless of end size. It is the |
