aboutsummaryrefslogtreecommitdiff
path: root/hw/escc.h
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-13 19:08:18 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-13 19:08:18 +0000
commitf5cbc474e8d810c8fc176311a70252ceb2368f94 (patch)
tree40da731ec2fe48e395cc8bd1dfa668a96180c037 /hw/escc.h
parent6b4079f843a3cb0b63d872f60dd60058c47696b7 (diff)
ESCC: swap the two CharDriverState arguments
Swap the two CharDriverState arguments so that the first argument corresponds to the channel A and the second argument to the channel B. Modify hw/sun4m.c accordingly. This fixes the order of the serial ports on the PPC machines. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6284 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/escc.h')
-rw-r--r--hw/escc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/escc.h b/hw/escc.h
index cb710eb0f5..2f3ae31164 100644
--- a/hw/escc.h
+++ b/hw/escc.h
@@ -1,7 +1,7 @@
/* escc.c */
#define ESCC_SIZE 4
-int escc_init(target_phys_addr_t base, qemu_irq irq, CharDriverState *chr1,
- CharDriverState *chr2, int clock, int it_shift);
+int escc_init(target_phys_addr_t base, qemu_irq irq, CharDriverState *chrA,
+ CharDriverState *chrB, int clock, int it_shift);
void slavio_serial_ms_kbd_init(target_phys_addr_t base, qemu_irq irq,
int disabled, int clock, int it_shift);