VMState relies on per-field versioning in some cases. We don't use this for serialization, but it is needed for proper generation of VMState field decriptions.
Signed-off-by: Michael Roth <mdr...@linux.vnet.ibm.com> --- hw/mc146818rtc_state.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/mc146818rtc_state.h b/hw/mc146818rtc_state.h index 9347ee6..3085bed 100644 --- a/hw/mc146818rtc_state.h +++ b/hw/mc146818rtc_state.h @@ -20,8 +20,8 @@ qc_declaration typedef struct RTCState { /* second update */ int64_t next_second_time; uint16_t _derived irq_reinject_on_ack_count; - uint32_t irq_coalesced; - uint32_t period; + uint32_t _version(2) irq_coalesced; + uint32_t _version(2) period; QEMUTimer _broken *coalesced_timer; QEMUTimer *second_timer; QEMUTimer *second_timer2; -- 1.7.4.1