]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/openrisc: Replace VMSTATE_UINTTL() -> VMSTATE_UINT32()
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 25 Sep 2025 00:46:47 +0000 (02:46 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 15:07:27 +0000 (17:07 +0200)
commit2795bc52af4949aa7c7d900f897e5fc81c6c9b24
tree4a4095968e442a1dc90c12b467ab22f0d397dcb0
parent5dfe024f9e2d97bb5b2e8f7bd520e8a55e39a725
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é <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20251010070702.51484-2-philmd@linaro.org>
target/openrisc/machine.c