From: Himanshu Chauhan <hschauhan@nulltrace.org>
To: qemu-devel@nongnu.org
Cc: Himanshu Chauhan <hschauhan@nulltrace.org>
Subject: [Qemu-devel] [PATCH] Fixed default IRQ assignment for PL190 VIC.
Date: Mon, 1 Nov 2010 18:16:01 +0530 [thread overview]
Message-ID: <1288615561-16584-1-git-send-email-hschauhan@nulltrace.org> (raw)
Everywhere else vect_addr[16] is returned on a read of default vector address
but updation is done only on default_addr in structure.
Signed-off-by: Himanshu Chauhan <hschauhan@nulltrace.org>
---
hw/pl190.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/hw/pl190.c b/hw/pl190.c
index a4bc9c1..7363b87 100644
--- a/hw/pl190.c
+++ b/hw/pl190.c
@@ -187,6 +187,7 @@ static void pl190_write(void *opaque, target_phys_addr_t offset, uint32_t val)
break;
case 13: /* DEFVECTADDR */
s->default_addr = val;
+ s->vect_addr[16] = val;
break;
case 0xc0: /* ITCR */
if (val) {
--
1.7.0.4
next reply other threads:[~2010-11-01 12:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-01 12:46 Himanshu Chauhan [this message]
2010-12-27 19:30 ` [Qemu-devel] [PATCH] Fixed default IRQ assignment for PL190 VIC Aurelien Jarno
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=1288615561-16584-1-git-send-email-hschauhan@nulltrace.org \
--to=hschauhan@nulltrace.org \
--cc=qemu-devel@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).