aboutsummaryrefslogtreecommitdiff
path: root/hw/timer/ibex_timer.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:37 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-30 07:38:06 +1100
commitba324b3fb40ac2ce621b97d6c2345d640fd26acb (patch)
tree24e537e988bca3d1189b5e8c0d4f74c1868709df /hw/timer/ibex_timer.c
parent0aa6c7df8cfd9b24128807bccc4275571f400ed1 (diff)
downloadqemu-ba324b3fb40ac2ce621b97d6c2345d640fd26acb.zip
qemu-ba324b3fb40ac2ce621b97d6c2345d640fd26acb.tar.gz
qemu-ba324b3fb40ac2ce621b97d6c2345d640fd26acb.tar.bz2
hw/timer: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-57-richard.henderson@linaro.org>
Diffstat (limited to 'hw/timer/ibex_timer.c')
-rw-r--r--hw/timer/ibex_timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/timer/ibex_timer.c b/hw/timer/ibex_timer.c
index d8b8e4e..4917388 100644
--- a/hw/timer/ibex_timer.c
+++ b/hw/timer/ibex_timer.c
@@ -252,7 +252,7 @@ static const VMStateDescription vmstate_ibex_timer = {
.version_id = 2,
.minimum_version_id = 2,
.post_load = ibex_timer_post_load,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT32(timer_ctrl, IbexTimerState),
VMSTATE_UINT32(timer_cfg0, IbexTimerState),
VMSTATE_UINT32(timer_compare_lower0, IbexTimerState),