From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZYGX-0002kh-G4 for qemu-devel@nongnu.org; Wed, 22 Jun 2011 20:59:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZYGW-0001Ld-El for qemu-devel@nongnu.org; Wed, 22 Jun 2011 20:59:29 -0400 MIME-Version: 1.0 Date: Thu, 23 Jun 2011 10:59:26 +1000 Message-ID: From: Matthew Fernandez Content-Type: text/plain; charset=ISO-8859-1 Subject: [Qemu-devel] [PATCH trivial] Fix comment typos in hw/armv7m.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, paul@codesourcery.com Fix a couple of typos in comments. Signed-off-by: Matthew Fernandez ---- This patch doesn't touch any code and should (hopefully) not be controversial. There doesn't seem to be a maintainer for this file, but changes are trivial. diff --git a/hw/armv7m.c b/hw/armv7m.c index 72d010a..83f3393 100644 --- a/hw/armv7m.c +++ b/hw/armv7m.c @@ -4,7 +4,7 @@ * Copyright (c) 2006-2007 CodeSourcery. * Written by Paul Brook * - * This code is licenced under the GPL. + * This code is licensed under the GPL. */ #include "sysbus.h" @@ -14,7 +14,7 @@ /* Bitbanded IO. Each word corresponds to a single bit. */ -/* Get the byte address of the real memory for a bitband acess. */ +/* Get the byte address of the real memory for a bitband access. */ static inline uint32_t bitband_addr(void * opaque, uint32_t addr) { uint32_t res;