From 2b5eb3712350d65d3eacb3ae468aae5e846b27b3 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Tue, 30 Mar 2010 17:36:23 +0000 Subject: Compile most PPC devices only once Make byte swapping unconditional since PPC is big endian. Signed-off-by: Blue Swirl --- hw/heathrow_pic.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'hw/heathrow_pic.c') diff --git a/hw/heathrow_pic.c b/hw/heathrow_pic.c index f6174b1d9f..5e270215ab 100644 --- a/hw/heathrow_pic.c +++ b/hw/heathrow_pic.c @@ -68,9 +68,7 @@ static void pic_writel (void *opaque, target_phys_addr_t addr, uint32_t value) HeathrowPIC *pic; unsigned int n; -#ifdef TARGET_WORDS_BIGENDIAN value = bswap32(value); -#endif n = ((addr & 0xfff) - 0x10) >> 4; PIC_DPRINTF("writel: " TARGET_FMT_plx " %u: %08x\n", addr, n, value); if (n >= 2) @@ -120,9 +118,7 @@ static uint32_t pic_readl (void *opaque, target_phys_addr_t addr) } } PIC_DPRINTF("readl: " TARGET_FMT_plx " %u: %08x\n", addr, n, value); -#ifdef TARGET_WORDS_BIGENDIAN value = bswap32(value); -#endif return value; } -- cgit v1.2.3