From patchwork Thu Jun 23 00:59:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthew Fernandez X-Patchwork-Id: 101565 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 1EED8B6F86 for ; Thu, 23 Jun 2011 11:01:29 +1000 (EST) Received: from localhost ([::1]:52528 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZYIQ-0002kp-1C for incoming@patchwork.ozlabs.org; Wed, 22 Jun 2011 21:01:26 -0400 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 Received: from mail-pv0-f173.google.com ([74.125.83.173]:57362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZYGW-0001LZ-9W; Wed, 22 Jun 2011 20:59:28 -0400 Received: by pvg3 with SMTP id 3so883373pvg.4 for ; Wed, 22 Jun 2011 17:59:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to:cc :content-type; bh=NQgsNUikqp0mjEdjDkwxE3nfiOgINI/1kIBU4mxBwe0=; b=g4/0t5UYDM6swQJk1aWWUSWghw03CzRJ8P7EdyB+hPZmfsBkyMgTnP+hLN7t8PLthD y23KBrFyUEzEeehElAPBAE/rdox2onOv0HTbO7Tyllw8n1jEqv8DWnvmcJwyNYfOmywj vdYYi8Fs17Qe7ksPBjGVXLJEHQeB7Oyqz53Pw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type; b=c19IFMHwKeeRoQJ06xOL7NwDodWSkoeCHSOgeO6uR6gi2o8HD0VyGohrN3aOz3kFj6 kUjaFmUwOeMZzRWkw0aI6H/iavr/vwtW+bOmXUZ+lYC3I8TfmlmilX5m11YIp1flZ22z GB6zKUR0cbrv8ggOdpO3OuVf3r1+sbSifRSHk= MIME-Version: 1.0 Received: by 10.68.7.4 with SMTP id f4mr815763pba.208.1308790766739; Wed, 22 Jun 2011 17:59:26 -0700 (PDT) Received: by 10.68.48.229 with HTTP; Wed, 22 Jun 2011 17:59:26 -0700 (PDT) Date: Thu, 23 Jun 2011 10:59:26 +1000 Message-ID: From: Matthew Fernandez To: qemu-devel@nongnu.org X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.83.173 Cc: qemu-trivial@nongnu.org, paul@codesourcery.com Subject: [Qemu-devel] [PATCH trivial] 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 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. Acked-by: Stefan Weil 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;