mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
hw/rtc/mc146818rtc: Rename RTCState -> MC146818RtcState
RTCState only represents a Motorola MC146818 model, not any RTC chipset. Rename the structure as MC146818RtcState using: $ sed -i -e s/RTCState/MC146818RtcState/g $(git grep -wl RTCState) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230210233116.80311-2-philmd@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
8e7db8ab51
commit
8df7129790
4 changed files with 65 additions and 64 deletions
|
@ -16,9 +16,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_MC146818_RTC "mc146818rtc"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(RTCState, MC146818_RTC)
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(MC146818RtcState, MC146818_RTC)
|
||||
|
||||
struct RTCState {
|
||||
struct MC146818RtcState {
|
||||
ISADevice parent_obj;
|
||||
|
||||
MemoryRegion io;
|
||||
|
@ -46,7 +46,7 @@ struct RTCState {
|
|||
Notifier clock_reset_notifier;
|
||||
LostTickPolicy lost_tick_policy;
|
||||
Notifier suspend_notifier;
|
||||
QLIST_ENTRY(RTCState) link;
|
||||
QLIST_ENTRY(MC146818RtcState) link;
|
||||
};
|
||||
|
||||
#define RTC_ISA_IRQ 8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue