diff options
author | Richard Henderson <rth@twiddle.net> | 2011-08-11 16:07:15 -0700 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-10-02 16:14:01 +0200 |
commit | 2ff0c7c3c2251e7e81e90c9556dda64261d033ec (patch) | |
tree | 791a469ab1711680cb100170f1b4fd76d3117353 /hw/ppc440.c | |
parent | fb50cfe44dbff7be1489c5ecf5428aabd401f2e0 (diff) |
serial: Remove ioregister parameter from serial_mm_init
All callers passed 1.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/ppc440.c')
-rw-r--r-- | hw/ppc440.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ppc440.c b/hw/ppc440.c index 9dd9215201..0cd7bcad43 100644 --- a/hw/ppc440.c +++ b/hw/ppc440.c @@ -93,11 +93,11 @@ CPUState *ppc440ep_init(ram_addr_t *ram_size, PCIBus **pcip, if (serial_hds[0] != NULL) { serial_mm_init(0xef600300, 0, pic[0], PPC_SERIAL_MM_BAUDBASE, - serial_hds[0], 1, DEVICE_BIG_ENDIAN); + serial_hds[0], DEVICE_BIG_ENDIAN); } if (serial_hds[1] != NULL) { serial_mm_init(0xef600400, 0, pic[1], PPC_SERIAL_MM_BAUDBASE, - serial_hds[1], 1, DEVICE_BIG_ENDIAN); + serial_hds[1], DEVICE_BIG_ENDIAN); } return env; |