[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC 04/10] hw/mos6522: Rename timer callback functions
From: |
Finn Thain |
Subject: |
[RFC 04/10] hw/mos6522: Rename timer callback functions |
Date: |
Tue, 24 Aug 2021 20:09:36 +1000 |
This improves readability.
Signed-off-by: Finn Thain <fthain@linux-m68k.org>
---
hw/misc/mos6522.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/hw/misc/mos6522.c b/hw/misc/mos6522.c
index 1d4a56077e..c0d6bee4cc 100644
--- a/hw/misc/mos6522.c
+++ b/hw/misc/mos6522.c
@@ -154,7 +154,7 @@ static void mos6522_timer2_update(MOS6522State *s,
MOS6522Timer *ti,
}
}
-static void mos6522_timer1(void *opaque)
+static void mos6522_timer1_expired(void *opaque)
{
MOS6522State *s = opaque;
MOS6522Timer *ti = &s->timers[0];
@@ -164,7 +164,7 @@ static void mos6522_timer1(void *opaque)
mos6522_update_irq(s);
}
-static void mos6522_timer2(void *opaque)
+static void mos6522_timer2_expired(void *opaque)
{
MOS6522State *s = opaque;
MOS6522Timer *ti = &s->timers[1];
@@ -445,8 +445,10 @@ static void mos6522_init(Object *obj)
s->timers[i].index = i;
}
- s->timers[0].timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, mos6522_timer1, s);
- s->timers[1].timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, mos6522_timer2, s);
+ s->timers[0].timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
+ mos6522_timer1_expired, s);
+ s->timers[1].timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
+ mos6522_timer2_expired, s);
}
static void mos6522_finalize(Object *obj)
--
2.26.3
- [RFC 00/10] hw/mos6522: VIA timer emulation fixes and improvements, Finn Thain, 2021/08/24
- [RFC 01/10] hw/mos6522: Remove get_load_time() methods and functions, Finn Thain, 2021/08/24
- [RFC 04/10] hw/mos6522: Rename timer callback functions,
Finn Thain <=
- [RFC 08/10] hw/mos6522: Call mos6522_update_irq() when appropriate, Finn Thain, 2021/08/24
- [RFC 05/10] hw/mos6522: Don't clear T1 interrupt flag on latch write, Finn Thain, 2021/08/24
- [RFC 07/10] hw/mos6522: Fix initial timer counter reload, Finn Thain, 2021/08/24