From: Stefan Weil <weil@mail.berlios.de>
To: QEMU Developers <qemu-devel@nongnu.org>
Cc: qemu-trivial@nongnu.org
Subject: [Qemu-devel] [PATCH 11/18] Fix typos in comments (interupt -> interrupt)
Date: Thu, 28 Apr 2011 17:20:35 +0200 [thread overview]
Message-ID: <1304004042-8334-11-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>
---
cpu-exec.c | 2 +-
hw/mst_fpga.c | 2 +-
hw/pl031.c | 2 +-
hw/pl061.c | 4 ++--
target-mips/translate_init.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/cpu-exec.c b/cpu-exec.c
index 395cd8c..2cdcdc5 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -569,7 +569,7 @@ int cpu_exec(CPUState *env1)
next_tb = 0;
}
#endif
- /* Don't use the cached interupt_request value,
+ /* Don't use the cached interrupt_request value,
do_interrupt may have updated the EXITTB flag. */
if (env->interrupt_request & CPU_INTERRUPT_EXITTB) {
env->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
diff --git a/hw/mst_fpga.c b/hw/mst_fpga.c
index a04355c..4e47574 100644
--- a/hw/mst_fpga.c
+++ b/hw/mst_fpga.c
@@ -154,7 +154,7 @@ mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
case MST_MSCRD:
s->mscrd = value;
break;
- case MST_INTMSKENA: /* Mask interupt */
+ case MST_INTMSKENA: /* Mask interrupt */
s->intmskena = (value & 0xFEEFF);
qemu_set_irq(s->parent, s->intsetclr & s->intmskena);
break;
diff --git a/hw/pl031.c b/hw/pl031.c
index 8c2f9d0..017a313 100644
--- a/hw/pl031.c
+++ b/hw/pl031.c
@@ -161,7 +161,7 @@ static void pl031_write(void * opaque, target_phys_addr_t offset,
pl031_update(s);
break;
case RTC_ICR:
- /* The PL031 documentation (DDI0224B) states that the interupt is
+ /* The PL031 documentation (DDI0224B) states that the interrupt is
cleared when bit 0 of the written value is set. However the
arm926e documentation (DDI0287B) states that the interrupt is
cleared when any value is written. */
diff --git a/hw/pl061.c b/hw/pl061.c
index 2e181f8..372dfc2 100644
--- a/hw/pl061.c
+++ b/hw/pl061.c
@@ -98,7 +98,7 @@ static uint32_t pl061_read(void *opaque, target_phys_addr_t offset)
return s->isense;
case 0x408: /* Interrupt both edges */
return s->ibe;
- case 0x40c: /* Interupt event */
+ case 0x40c: /* Interrupt event */
return s->iev;
case 0x410: /* Interrupt mask */
return s->im;
@@ -156,7 +156,7 @@ static void pl061_write(void *opaque, target_phys_addr_t offset,
case 0x408: /* Interrupt both edges */
s->ibe = value;
break;
- case 0x40c: /* Interupt event */
+ case 0x40c: /* Interrupt event */
s->iev = value;
break;
case 0x410: /* Interrupt mask */
diff --git a/target-mips/translate_init.c b/target-mips/translate_init.c
index 590e092..d980216 100644
--- a/target-mips/translate_init.c
+++ b/target-mips/translate_init.c
@@ -38,7 +38,7 @@
((1 << CP0C2_M))
/* No config4, no DSP ASE, no large physaddr (PABITS),
- no external interrupt controller, no vectored interupts,
+ no external interrupt controller, no vectored interrupts,
no 1kb pages, no SmartMIPS ASE, no trace logic */
#define MIPS_CONFIG3 \
((0 << CP0C3_M) | (0 << CP0C3_DSPP) | (0 << CP0C3_LPA) | \
--
1.7.2.5
next prev parent reply other threads:[~2011-04-28 15:21 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 ` Stefan Weil [this message]
2011-04-28 15:20 ` [Qemu-devel] [PATCH 12/18] Fix typos in comments (instanciation -> instantiation) Stefan Weil
2011-04-28 15:20 ` [Qemu-devel] [PATCH 13/18] Fix typos in comments (neccessary -> necessary) Stefan Weil
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-11-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).