From: Philippe Mathieu-Daudé Date: Thu, 25 Sep 2025 00:46:47 +0000 (+0200) Subject: target/openrisc: Replace VMSTATE_UINTTL() -> VMSTATE_UINT32() X-Git-Tag: v10.2.0-rc1~61^2~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2795bc52af4949aa7c7d900f897e5fc81c6c9b24;p=thirdparty%2Fqemu.git target/openrisc: Replace VMSTATE_UINTTL() -> VMSTATE_UINT32() Both OpenRISCTLBEntry fields are of uint32_t type. Use the appropriate VMSTATE_UINT32() macro. There is no functional change (the migration stream is not modified), because the OpenRISC targets are only built as 32-bit: $ git grep TARGET_LONG_BITS configs/targets/or1k-* configs/targets/or1k-linux-user.mak:5:TARGET_LONG_BITS=32 configs/targets/or1k-softmmu.mak:5:TARGET_LONG_BITS=32 Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Anton Johansson Reviewed-by: Richard Henderson Message-Id: <20251010070702.51484-2-philmd@linaro.org> --- diff --git a/target/openrisc/machine.c b/target/openrisc/machine.c index 081c706d02..fa054e528b 100644 --- a/target/openrisc/machine.c +++ b/target/openrisc/machine.c @@ -26,8 +26,8 @@ static const VMStateDescription vmstate_tlb_entry = { .version_id = 1, .minimum_version_id = 1, .fields = (const VMStateField[]) { - VMSTATE_UINTTL(mr, OpenRISCTLBEntry), - VMSTATE_UINTTL(tr, OpenRISCTLBEntry), + VMSTATE_UINT32(mr, OpenRISCTLBEntry), + VMSTATE_UINT32(tr, OpenRISCTLBEntry), VMSTATE_END_OF_LIST() } };