diff options
author | Blue Swirl | 2010-03-21 20:47:09 +0100 |
---|---|---|
committer | Blue Swirl | 2010-03-21 20:47:09 +0100 |
commit | 84108e128e0245dc1ff9c0aa064e9cfe2316b32d (patch) | |
tree | 7676ed17e01f89aaf2896e4514198ccd5a3b71ef /hw/ppc_oldworld.c | |
parent | Compile most PCI network cards only once (diff) | |
download | qemu-84108e128e0245dc1ff9c0aa064e9cfe2316b32d.tar.gz qemu-84108e128e0245dc1ff9c0aa064e9cfe2316b32d.tar.xz qemu-84108e128e0245dc1ff9c0aa064e9cfe2316b32d.zip |
Compile isa_mmio only once
Push TARGET_WORDS_BIGENDIAN dependency to board level.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ppc_oldworld.c')
-rw-r--r-- | hw/ppc_oldworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_oldworld.c b/hw/ppc_oldworld.c index bdc5bcd92e..27ddc013e6 100644 --- a/hw/ppc_oldworld.c +++ b/hw/ppc_oldworld.c @@ -304,7 +304,7 @@ static void ppc_heathrow_init (ram_addr_t ram_size, isa_mem_base = 0x80000000; /* Register 2 MB of ISA IO space */ - isa_mmio_init(0xfe000000, 0x00200000); + isa_mmio_init(0xfe000000, 0x00200000, 1); /* XXX: we register only 1 output pin for heathrow PIC */ heathrow_irqs = qemu_mallocz(smp_cpus * sizeof(qemu_irq *)); |