diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-20 09:13:55 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-20 09:13:55 +0000 |
commit | 5a9b7d36a0730fa8992ee4cc05825bd0e9b184b0 (patch) | |
tree | b8484bfdb65d59b1b8be745e6497f433b6982e3e /hw/i8259.c | |
parent | a785e42e06ca502338e15cd87113049a6ae732b2 (diff) |
Avoid PreP target kernel freeze waiting for IRQs.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3414 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/i8259.c')
-rw-r--r-- | hw/i8259.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i8259.c b/hw/i8259.c index 7c94d8d84a..1e256d96b3 100644 --- a/hw/i8259.c +++ b/hw/i8259.c @@ -164,7 +164,7 @@ void pic_update_irq(PicState2 *s) } /* all targets should do this rather than acking the IRQ in the cpu */ -#if defined(TARGET_MIPS) +#if defined(TARGET_MIPS) || defined(TARGET_PPC) else { qemu_irq_lower(s->parent_irq); } |