]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/rtc/twl92230: Use int64_t for sec_offset and alm_sec
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 31 Aug 2023 08:45:18 +0000 (09:45 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 31 Aug 2023 08:45:18 +0000 (09:45 +0100)
In the twl92230 device, use int64_t for the two state fields
sec_offset and alm_sec, because we set these to values that
are either time_t or differences between two time_t values.

These fields aren't saved in vmstate anywhere, so we can
safely widen them.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
hw/rtc/twl92230.c

index d8534dad9496b5ec044d68a1a4bf933c2add3ccd..64c61c3daebc82429e3b57465f6b4dd4e5cbcf10 100644 (file)
@@ -65,8 +65,8 @@ struct MenelausState {
         struct tm tm;
         struct tm new;
         struct tm alm;
-        int sec_offset;
-        int alm_sec;
+        int64_t sec_offset;
+        int64_t alm_sec;
         int next_comp;
     } rtc;
     uint16_t rtc_next_vmstate;