aboutsummaryrefslogtreecommitdiff
path: root/hw/net/lance.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:22 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-30 07:38:06 +1100
commit1de81b426ca563303d4fd6ba5a5d44d632a44e89 (patch)
treeaa58dfa1e4bb546419a9cee8e2b47f4cbc61d9ee /hw/net/lance.c
parente4ea952fb0180e85655e9a93d39a1ad9442f76f2 (diff)
downloadqemu-1de81b426ca563303d4fd6ba5a5d44d632a44e89.zip
qemu-1de81b426ca563303d4fd6ba5a5d44d632a44e89.tar.gz
qemu-1de81b426ca563303d4fd6ba5a5d44d632a44e89.tar.bz2
hw/net: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-42-richard.henderson@linaro.org>
Diffstat (limited to 'hw/net/lance.c')
-rw-r--r--hw/net/lance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/lance.c b/hw/net/lance.c
index 4c5f01b..e1ed24c 100644
--- a/hw/net/lance.c
+++ b/hw/net/lance.c
@@ -94,7 +94,7 @@ static const VMStateDescription vmstate_lance = {
.name = "pcnet",
.version_id = 3,
.minimum_version_id = 2,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_STRUCT(state, SysBusPCNetState, 0, vmstate_pcnet, PCNetState),
VMSTATE_END_OF_LIST()
}