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/dev/usb | |
parent | 6e513c40818b714c9555797760d6e4c3e4f48d7f (diff) |
Correct the spelling of "transferred" and "transferring"
from Tobias Ulmer (tobiasu at tmux.org); ok jmc@, krw@
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/if_atu.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/uvisor.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c index 5f1659bae15..adf88148695 100644 --- a/sys/dev/usb/if_atu.c +++ b/sys/dev/usb/if_atu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_atu.c,v 1.100 2011/09/18 23:24:12 krw Exp $ */ +/* $OpenBSD: if_atu.c,v 1.101 2012/02/24 06:19:00 guenther Exp $ */ /* * Copyright (c) 2003, 2004 * Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved. @@ -339,7 +339,7 @@ atu_usb_request(struct atu_softc *sc, u_int8_t type, #ifdef ATU_DEBUG if (atudebug) { if (type & UT_READ) { - DPRINTFN(20, ("%s: transfered 0x%x bytes in\n", + DPRINTFN(20, ("%s: transferred 0x%x bytes in\n", sc->atu_dev.dv_xname, total_len)); DPRINTFN(20, ("%s: dump [%10D]\n", sc->atu_dev.dv_xname, data, " ")); diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index dfa2645339e..ba57360c583 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvisor.c,v 1.44 2011/07/03 15:47:18 matthew Exp $ */ +/* $OpenBSD: uvisor.c,v 1.45 2012/02/24 06:19:00 guenther Exp $ */ /* $NetBSD: uvisor.c,v 1.21 2003/08/03 21:59:26 nathanw Exp $ */ /* @@ -66,7 +66,7 @@ int uvisordebug = 0; /* From the Linux driver */ /* * UVISOR_REQUEST_BYTES_AVAILABLE asks the visor for the number of bytes that - * are available to be transfered to the host for the specified endpoint. + * are available to be transferred to the host for the specified endpoint. * Currently this is not used, and always returns 0x0001 */ #define UVISOR_REQUEST_BYTES_AVAILABLE 0x01 |