From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwOH-0004xi-OP for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:46:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgwOC-0003rR-58 for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:46:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:11447) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwHG-0002LP-Us for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:39:35 -0500 From: Stefan Hajnoczi Date: Fri, 7 Dec 2012 12:39:10 +0100 Message-Id: <1354880352-9597-12-git-send-email-stefanha@redhat.com> In-Reply-To: <1354880352-9597-1-git-send-email-stefanha@redhat.com> References: <1354880352-9597-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH 11/13] Fix spelling in comments and documentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi From: Stefan Weil These spelling bugs were found by codespell: supressing -> suppressing transfered -> transferred Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/usb.h | 6 +++--- tests/qemu-iotests/iotests.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/usb.h b/hw/usb.h index 7d6de69..f05eb17 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -282,7 +282,7 @@ typedef struct USBDeviceClass { * Called from handle_packet(). * * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS - * then the number of bytes transfered is stored in p->actual_length + * then the number of bytes transferred is stored in p->actual_length */ void (*handle_control)(USBDevice *dev, USBPacket *p, int request, int value, int index, int length, uint8_t *data); @@ -292,7 +292,7 @@ typedef struct USBDeviceClass { * Called from handle_packet(). * * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS - * then the number of bytes transfered is stored in p->actual_length + * then the number of bytes transferred is stored in p->actual_length */ void (*handle_data)(USBDevice *dev, USBPacket *p); @@ -358,7 +358,7 @@ struct USBPacket { bool short_not_ok; bool int_req; int status; /* USB_RET_* status code */ - int actual_length; /* Number of bytes actually transfered */ + int actual_length; /* Number of bytes actually transferred */ /* Internal use by the USB layer. */ USBPacketState state; USBCombinedPacket *combined; diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index b2eaf20..0be5c7e 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -43,7 +43,7 @@ def qemu_img(*args): return subprocess.call(qemu_img_args + list(args), stdin=devnull, stdout=devnull) def qemu_img_verbose(*args): - '''Run qemu-img without supressing its output and return the exit code''' + '''Run qemu-img without suppressing its output and return the exit code''' return subprocess.call(qemu_img_args + list(args)) def qemu_io(*args): -- 1.8.0.1