From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39139) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwRJ-0006xR-Ah for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:50:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgwRA-0004ZI-VC for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:49:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:20253) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwH8-0002Kn-26 for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:39:26 -0500 From: Stefan Hajnoczi Date: Fri, 7 Dec 2012 12:39:04 +0100 Message-Id: <1354880352-9597-6-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 05/13] s390x: Spelling fixes (endianess -> endianness, occured -> occurred) 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 Replace also "write into" by "write to". Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/s390x/sclp.h | 4 ++-- hw/s390x/sclpconsole.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/s390x/sclp.h b/hw/s390x/sclp.h index fe89dad..231a38a 100644 --- a/hw/s390x/sclp.h +++ b/hw/s390x/sclp.h @@ -51,7 +51,7 @@ /* * Normally packed structures are not the right thing to do, since all code - * must take care of endianess. We cant use ldl_phys and friends for two + * must take care of endianness. We cannot use ldl_phys and friends for two * reasons, though: * - some of the embedded structures below the SCCB can appear multiple times * at different locations, so there is no fixed offset @@ -60,7 +60,7 @@ * alter the structure while we parse it. We cannot use ldl_p and friends * either without doing pointer arithmetics * So we have to double check that all users of sclp data structures use the - * right endianess wrappers. + * right endianness wrappers. */ typedef struct SCCBHeader { uint16_t length; diff --git a/hw/s390x/sclpconsole.c b/hw/s390x/sclpconsole.c index 0ec5623..fece878 100644 --- a/hw/s390x/sclpconsole.c +++ b/hw/s390x/sclpconsole.c @@ -179,8 +179,8 @@ static int read_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr, } /* triggered by SCLP's write_event_data - * - write console data into character layer - * returns < 0 if an error occured + * - write console data to character layer + * returns < 0 if an error occurred */ static ssize_t write_console_data(SCLPEvent *event, const uint8_t *buf, size_t len) -- 1.8.0.1