diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-24 06:19:01 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-24 06:19:01 +0000 |
commit | 5684b0ff2799cac6658e9e66d3dc150030aaf083 (patch) | |
tree | 4a906e7014b917d765632b751e3f46785aceb0fd /sys/arch | |
parent | 6e513c40818b714c9555797760d6e4c3e4f48d7f (diff) |
Correct the spelling of "transferred" and "transferring"
from Tobias Ulmer (tobiasu at tmux.org); ok jmc@, krw@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/dev/tpms.c | 4 | ||||
-rw-r--r-- | sys/arch/vax/dec/sii.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/macppc/dev/tpms.c b/sys/arch/macppc/dev/tpms.c index 40567c34d76..ce9e1abe07f 100644 --- a/sys/arch/macppc/dev/tpms.c +++ b/sys/arch/macppc/dev/tpms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tpms.c,v 1.15 2010/04/09 17:01:30 jasper Exp $ */ +/* $OpenBSD: tpms.c,v 1.16 2012/02/24 06:19:00 guenther Exp $ */ /* * Copyright (c) 2005, Johan Wallén @@ -128,7 +128,7 @@ * Magic numbers. */ -/* The amount of data transfered by the USB device. */ +/* The amount of data transferred by the USB device. */ #define TPMS_DATA_LEN 81 /* The maximum number of sensors. */ diff --git a/sys/arch/vax/dec/sii.c b/sys/arch/vax/dec/sii.c index 75cd717b15c..03e0686f5f8 100644 --- a/sys/arch/vax/dec/sii.c +++ b/sys/arch/vax/dec/sii.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sii.c,v 1.13 2011/07/17 22:46:47 matthew Exp $ */ +/* $OpenBSD: sii.c,v 1.14 2012/02/24 06:19:00 guenther Exp $ */ /* $NetBSD: sii.c,v 1.42 2000/06/02 20:20:29 mhitch Exp $ */ /* * Copyright (c) 2008 Miodrag Vallat. @@ -645,7 +645,7 @@ again: printf("%s: Parity error\n", sc->sc_dev.dv_xname); goto abort; } - /* dmalen = amount left to transfer, i = amount transfered */ + /* dmalen = amount left to transfer, i = amount transferred */ i = state->dmalen; state->dmalen = 0; state->dmaCurPhase = -1; @@ -899,7 +899,7 @@ again: #endif } - /* read amount transfered if DMA didn't finish */ + /* read amount transferred if DMA didn't finish */ if (state->dmalen > 0) { i = state->dmalen - regs->dmlotc; state->dmalen = 0; |