From patchwork Fri Jun 24 16:56:45 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 101866 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 401BCB6F87 for ; Sat, 25 Jun 2011 04:58:22 +1000 (EST) Received: from localhost ([::1]:33516 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QaBa7-0002nD-1w for incoming@patchwork.ozlabs.org; Fri, 24 Jun 2011 14:58:19 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46576) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hR-0004X2-I6 for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qa9hP-0001Xn-Eq for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:45 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:58586) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hO-0001W2-Tb for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:43 -0400 Received: by mail-fx0-f45.google.com with SMTP id 12so94462fxg.4 for ; Fri, 24 Jun 2011 09:57:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=vd8vjLnKVb1Zxk94s4N763thsQznrIYmgr7DQ6oRS90=; b=fx5W3+bgdmnjYWI16jW/VqT85bwhgBp1XOVYlQfeC+EqyItDw7KMfyVZgUwPMFZ3xm v9OSZwBd6Yy2qNlOX32aFICvAv5tYNpUf1v52K6rYt/9eVKfZ2LPKC+LZgfpAH61vnDe qxP3mEA7mVjDr0Bovblf6mXoSb/C5eDiHX6fM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=NlrB4ccFg9nvMxkT1TZAPKj0ZDQZivxec7u8yvfBImeMoTney63wrhS6y2mzwJfClr QISeCZvvR95ht59Fy06muVK6dLrFrHrjZpsUL6NFGAYzpAHiKAIuR5C3CWB2naz/Nnh9 lH2Xa83DRzS03Mpf9KGLEUNuR1j3YEf0Wv+wg= Received: by 10.223.57.10 with SMTP id a10mr2100208fah.136.1308934662013; Fri, 24 Jun 2011 09:57:42 -0700 (PDT) Received: from localhost.localdomain (gbibp9ph1--blueice3n2.emea.ibm.com [195.212.29.84]) by mx.google.com with ESMTPS id h28sm1763884faj.5.2011.06.24.09.57.40 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 24 Jun 2011 09:57:41 -0700 (PDT) From: Stefan Hajnoczi To: Date: Fri, 24 Jun 2011 17:56:45 +0100 Message-Id: <1308934609-20824-10-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.161.45 Cc: Anthony Liguori , Stefan Hajnoczi , Matthew Fernandez Subject: [Qemu-devel] [PATCH 09/13] Fix comment typos in hw/armv7m.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Matthew Fernandez Fix a couple of typos in comments. Signed-off-by: Matthew Fernandez Acked-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/armv7m.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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;