From 84108e128e0245dc1ff9c0aa064e9cfe2316b32d Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 21 Mar 2010 19:47:09 +0000 Subject: Compile isa_mmio only once Push TARGET_WORDS_BIGENDIAN dependency to board level. Signed-off-by: Blue Swirl --- hw/versatile_pci.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'hw/versatile_pci.c') diff --git a/hw/versatile_pci.c b/hw/versatile_pci.c index 7048fb84d0..199bc1936e 100644 --- a/hw/versatile_pci.c +++ b/hw/versatile_pci.c @@ -108,7 +108,11 @@ static void pci_vpb_map(SysBusDevice *dev, target_phys_addr_t base) if (s->realview) { /* IO memory area. */ - isa_mmio_init(base + 0x03000000, 0x00100000); +#ifdef TARGET_WORDS_BIGENDIAN + isa_mmio_init(base + 0x03000000, 0x00100000, 1); +#else + isa_mmio_init(base + 0x03000000, 0x00100000, 0); +#endif } } -- cgit 1.4.1