From: Stefan Weil <weil@mail.berlios.de>
To: QEMU Developers <qemu-devel@nongnu.org>
Cc: qemu-trivial@nongnu.org
Subject: [Qemu-devel] [PATCH 13/18] Fix typos in comments (neccessary -> necessary)
Date: Thu, 28 Apr 2011 17:20:37 +0200 [thread overview]
Message-ID: <1304004042-8334-13-git-send-email-weil@mail.berlios.de> (raw)
In-Reply-To: <1304004042-8334-1-git-send-email-weil@mail.berlios.de>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
bsd-user/qemu.h | 2 +-
linux-user/qemu.h | 2 +-
target-arm/translate.c | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index e343894..1ba2d08 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -323,7 +323,7 @@ abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
/* Functions for accessing guest memory. The tget and tput functions
- read/write single values, byteswapping as neccessary. The lock_user
+ read/write single values, byteswapping as necessary. The lock_user
gets a pointer to a contiguous area of guest memory, but does not perform
and byteswapping. lock_user may return either a pointer to the guest
memory, or a temporary buffer. */
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index f522f5e..237386c 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -379,7 +379,7 @@ abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
/* Functions for accessing guest memory. The tget and tput functions
- read/write single values, byteswapping as neccessary. The lock_user
+ read/write single values, byteswapping as necessary. The lock_user
gets a pointer to a contiguous area of guest memory, but does not perform
and byteswapping. lock_user may return either a pointer to the guest
memory, or a temporary buffer. */
diff --git a/target-arm/translate.c b/target-arm/translate.c
index a1af436..3119137 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -7348,7 +7348,7 @@ static void disas_arm_insn(CPUState * env, DisasContext *s)
} else if ((insn & 0x000003e0) == 0x00000060) {
tmp = load_reg(s, rm);
shift = (insn >> 10) & 3;
- /* ??? In many cases it's not neccessary to do a
+ /* ??? In many cases it's not necessary to do a
rotate, a shift is sufficient. */
if (shift != 0)
tcg_gen_rotri_i32(tmp, tmp, shift * 8);
@@ -8139,7 +8139,7 @@ static int disas_thumb2_insn(CPUState *env, DisasContext *s, uint16_t insn_hw1)
case 1: /* Sign/zero extend. */
tmp = load_reg(s, rm);
shift = (insn >> 4) & 3;
- /* ??? In many cases it's not neccessary to do a
+ /* ??? In many cases it's not necessary to do a
rotate, a shift is sufficient. */
if (shift != 0)
tcg_gen_rotri_i32(tmp, tmp, shift * 8);
--
1.7.2.5
next prev parent reply other threads:[~2011-04-28 15:25 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-28 15:20 [Qemu-devel] [PATCH 01/18] Fix typos in comments (dependancy -> dependency) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 02/18] Fix typos in comments (accross -> across) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 03/18] Fix typos in comments (accessable -> accessible, priveleged -> privileged) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 04/18] Fix typo in comment (colum -> column) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 05/18] Fix typo in comment (auxilliary -> auxiliary) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 06/18] Fix typo in comment (embeded -> embedded) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 07/18] Fix typo in comment (consistant -> consistent) Stefan Weil
2011-05-04 10:13 ` Alon Levy
2011-04-28 15:20 ` [Qemu-devel] [PATCH 08/18] Fix typo in comment (dieing -> dying) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 09/18] Fix typos in comments (imediately -> immediately) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 10/18] Fix typos in comments (existance -> existence) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 11/18] Fix typos in comments (interupt -> interrupt) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 12/18] Fix typos in comments (instanciation -> instantiation) Stefan Weil
2011-04-28 15:20 ` Stefan Weil [this message]
2011-04-28 15:20 ` [Qemu-devel] [PATCH 14/18] Fix typos in comments and code (occured -> occurred and related) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 15/18] Fix typo in comment (relevent -> relevant) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 16/18] Fix typo in comment (responsiblity -> responsibility) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 17/18] Fix typo in comment (truely -> truly) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 18/18] Fix typos in comment (threshhold -> threshold, mapp -> map) Stefan Weil
2011-05-03 20:25 ` [Qemu-devel] [PATCH 01/18] Fix typos in comments (dependancy -> dependency) Stefan Weil
2011-05-04 15:18 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
2011-05-08 12:00 ` [Qemu-devel] " Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1304004042-8334-13-git-send-email-weil@mail.berlios.de \
--to=weil@mail.berlios.de \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).