aboutsummaryrefslogtreecommitdiffstats
path: root/hw/escc.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-02-07 08:05:47 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-02-07 08:05:47 +0000
commit8e39a033fb5a8ac9a0a28bdf42182b96267f305d (patch)
treec2e7bf87ae23e6a05ba6d8aa656794ffd5496700 /hw/escc.c
parent43a347045768ce843987649bafc5bc1dd18d4d0f (diff)
escc: don't use reserved _t suffix
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/escc.c')
-rw-r--r--hw/escc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/escc.c b/hw/escc.c
index 0b20aeabb..6d2fd36b1 100644
--- a/hw/escc.c
+++ b/hw/escc.c
@@ -88,13 +88,13 @@
typedef enum {
chn_a, chn_b,
-} chn_id_t;
+} ChnID;
#define CHN_C(s) ((s)->chn == chn_b? 'b' : 'a')
typedef enum {
ser, kbd, mouse,
-} chn_type_t;
+} ChnType;
#define SERIO_QUEUE_SIZE 256
@@ -108,8 +108,8 @@ typedef struct ChannelState {
qemu_irq irq;
uint32_t reg;
uint32_t rxint, txint, rxint_under_svc, txint_under_svc;
- chn_id_t chn; // this channel, A (base+4) or B (base+0)
- chn_type_t type;
+ ChnID chn; // this channel, A (base+4) or B (base+0)
+ ChnType type;
struct ChannelState *otherchn;
uint8_t rx, tx, wregs[SERIAL_REGS], rregs[SERIAL_REGS];
SERIOQueue queue;