diff options
author | Richard Henderson <rth@twiddle.net> | 2011-08-11 16:07:14 -0700 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-10-02 16:14:01 +0200 |
commit | fb50cfe44dbff7be1489c5ecf5428aabd401f2e0 (patch) | |
tree | 737c44fe223d0a98a30ed36781413fb4715b7e42 /hw/serial.c | |
parent | 8e8ffc44e8d0a4a41e4b0bee8b1c2a3e1a11cfc4 (diff) |
serial: Use enum device_endian in serial_mm_init parameter
The use of DEVICE_NATIVE_ENDIAN cleans up lots of ifdefs in
many of the callers.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/serial.c')
-rw-r--r-- | hw/serial.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/serial.c b/hw/serial.c index 310bfde6f8..a533c04dc9 100644 --- a/hw/serial.c +++ b/hw/serial.c @@ -858,10 +858,9 @@ static const MemoryRegionOps serial_mm_ops[3] = { SerialState *serial_mm_init (target_phys_addr_t base, int it_shift, qemu_irq irq, int baudbase, CharDriverState *chr, int ioregister, - int be) + enum device_endian end) { SerialState *s; - enum device_endian end; s = g_malloc0(sizeof(SerialState)); @@ -873,7 +872,6 @@ SerialState *serial_mm_init (target_phys_addr_t base, int it_shift, serial_init_core(s); vmstate_register(NULL, base, &vmstate_serial, s); - end = (be ? DEVICE_BIG_ENDIAN : DEVICE_LITTLE_ENDIAN); memory_region_init_io(&s->io, &serial_mm_ops[end], s, "serial", 8 << it_shift); if (ioregister) { |