projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5632ae4
)
mips_jazz: initialize i8259 after the ISA bus
author
Avi Kivity
<avi@redhat.com>
Sun, 18 Sep 2011 13:13:38 +0000
(16:13 +0300)
committer
Avi Kivity
<avi@redhat.com>
Sun, 25 Sep 2011 11:58:36 +0000
(14:58 +0300)
Succeeding i8259 conversion to ISA requires this.
Signed-off-by: Avi Kivity <avi@redhat.com>
hw/mips_jazz.c
patch
|
blob
|
history
diff --git
a/hw/mips_jazz.c
b/hw/mips_jazz.c
index e1ac1472a22f441b2dfaf9c1da83ebb258d20241..2b911c7fcdadcdf00b24537f99f9f01005be7b0d 100644
(file)
--- a/
hw/mips_jazz.c
+++ b/
hw/mips_jazz.c
@@
-181,8
+181,8
@@
static void mips_jazz_init(MemoryRegion *address_space,
memory_region_add_subregion(address_space, 0x8000d000, dma_dummy);
/* ISA devices */
- i8259 = i8259_init(env->irq[4]);
isa_bus_new(NULL, address_space_io);
+ i8259 = i8259_init(env->irq[4]);
isa_bus_irqs(i8259);
cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1);
DMA_init(0, cpu_exit_irq);