diff options
author | 2004-01-13 22:07:09 +0000 | |
---|---|---|
committer | 2004-01-13 22:07:09 +0000 | |
commit | ed4eeb8ef2e8bc066cf4500087c99ca063b9fa93 (patch) | |
tree | 434f258fda17379cf8d6d8bf76c890e5cda51a5d /sys/dev | |
parent | Take advantage of the way config(8) works to probe for bugtty last during (diff) | |
download | wireguard-openbsd-ed4eeb8ef2e8bc066cf4500087c99ca063b9fa93.tar.xz wireguard-openbsd-ed4eeb8ef2e8bc066cf4500087c99ca063b9fa93.zip |
spelling
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/nslm7x.c | 6 | ||||
-rw-r--r-- | sys/dev/isa/isadma.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/nslm7x.c b/sys/dev/ic/nslm7x.c index fdceb302b34..76b62400b83 100644 --- a/sys/dev/ic/nslm7x.c +++ b/sys/dev/ic/nslm7x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nslm7x.c,v 1.4 2004/01/12 14:10:53 grange Exp $ */ +/* $OpenBSD: nslm7x.c,v 1.5 2004/01/13 22:07:09 deraadt Exp $ */ /* $NetBSD: nslm7x.c,v 1.17 2002/11/15 14:55:41 ad Exp $ */ /*- @@ -208,7 +208,7 @@ def_match(struct lm_softc *sc) int i; i = (*sc->lm_readreg)(sc, LMD_CHIPID) & LM_ID_MASK; - printf(": Unknown chip (ID %d)\n", i); + printf(": unknown chip (ID %d)\n", i); lm_common_match(sc); return 1; } @@ -299,7 +299,7 @@ wb_match(struct lm_softc *sc) printf(": W83627THF\n"); break; default: - printf(": unknow winbond chip ID 0x%x\n", j); + printf(": unknown winbond chip ID 0x%x\n", j); /* handle as a standart lm7x */ lm_common_match(sc); return 1; diff --git a/sys/dev/isa/isadma.c b/sys/dev/isa/isadma.c index 219909fb340..920e3402b7c 100644 --- a/sys/dev/isa/isadma.c +++ b/sys/dev/isa/isadma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isadma.c,v 1.26 2002/03/14 01:26:56 millert Exp $ */ +/* $OpenBSD: isadma.c,v 1.27 2004/01/13 22:09:40 deraadt Exp $ */ /* $NetBSD: isadma.c,v 1.32 1997/09/05 01:48:33 thorpej Exp $ */ /*- @@ -722,7 +722,7 @@ isa_free(addr, pool) ; m = *mp; if (!m) { - printf("isa_free: freeing unallocted memory\n"); + printf("isa_free: freeing unallocated memory\n"); return; } *mp = m->next; @@ -742,7 +742,7 @@ isa_mappage(mem, off, prot) for(m = isa_mem_head; m && m->kva != (caddr_t)mem; m = m->next) ; if (!m) { - printf("isa_mappage: mapping unallocted memory\n"); + printf("isa_mappage: mapping unallocated memory\n"); return -1; } return (isa_dmamem_mmap(m->isadev, m->chan, m->addr, m->size, off, |