diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-12-21 14:16:42 +1100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-12-30 07:38:06 +1100 |
commit | 45bc669ee673cf6b72e3dc7071e96115ae0406f6 (patch) | |
tree | 5ca849c99507df7b00f04ba8b5ef5ca9677ecce3 /hw/watchdog/wdt_ib700.c | |
parent | ca02a17054565838ae833a4af7642fdcad9e0139 (diff) |
hw/watchdog: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231221031652.119827-62-richard.henderson@linaro.org>
Diffstat (limited to 'hw/watchdog/wdt_ib700.c')
-rw-r--r-- | hw/watchdog/wdt_ib700.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/watchdog/wdt_ib700.c b/hw/watchdog/wdt_ib700.c index a1750a4957..eea8da6059 100644 --- a/hw/watchdog/wdt_ib700.c +++ b/hw/watchdog/wdt_ib700.c @@ -95,7 +95,7 @@ static const VMStateDescription vmstate_ib700 = { .name = "ib700_wdt", .version_id = 0, .minimum_version_id = 0, - .fields = (VMStateField[]) { + .fields = (const VMStateField[]) { VMSTATE_TIMER_PTR(timer, IB700State), VMSTATE_END_OF_LIST() } |