qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Himanshu Chauhan <hschauhan@nulltrace.org>
To: Qemu Dev List <qemu-devel@nongnu.org>
Subject: [Qemu-devel] [PATCH RESEND] Fixed default IRQ assignment for PL190 VIC.
Date: Wed, 3 Nov 2010 16:47:08 +0530	[thread overview]
Message-ID: <20101103111706.GA4055@pnq-hchauhan-vm> (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


----- End forwarded message -----

                 reply	other threads:[~2010-11-03 11:17 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20101103111706.GA4055@pnq-hchauhan-vm \
    --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).