aboutsummaryrefslogtreecommitdiff
path: root/hw/input/pl050.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:14 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-29 11:17:30 +1100
commitaf0f07dfc7ce56a944c38d872b7d4502178e6948 (patch)
tree01df440ebb836f7fb4260ebdab693c9ce521812e /hw/input/pl050.c
parent8595c05422415e8a8d26f68fc0ddfd3083544878 (diff)
downloadqemu-af0f07dfc7ce56a944c38d872b7d4502178e6948.zip
qemu-af0f07dfc7ce56a944c38d872b7d4502178e6948.tar.gz
qemu-af0f07dfc7ce56a944c38d872b7d4502178e6948.tar.bz2
hw/input: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-34-richard.henderson@linaro.org>
Diffstat (limited to 'hw/input/pl050.c')
-rw-r--r--hw/input/pl050.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/input/pl050.c b/hw/input/pl050.c
index ec5e192..6519e26 100644
--- a/hw/input/pl050.c
+++ b/hw/input/pl050.c
@@ -30,7 +30,7 @@ static const VMStateDescription vmstate_pl050 = {
.name = "pl050",
.version_id = 2,
.minimum_version_id = 2,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT32(cr, PL050State),
VMSTATE_UINT32(clk, PL050State),
VMSTATE_UINT32(last, PL050State),