diff options
author | Philippe Mathieu-Daudé | 2021-03-13 18:11:48 +0100 |
---|---|---|
committer | Laurent Vivier | 2021-05-02 17:24:50 +0200 |
commit | cfa52e09c4ddf6698e3e7b590ab3b9e2a01977dd (patch) | |
tree | e7476bce1498d8669ef340cbec30169828886af9 /hw/misc | |
parent | vmstate: Constify some VMStateDescriptions (diff) | |
download | qemu-cfa52e09c4ddf6698e3e7b590ab3b9e2a01977dd.tar.gz qemu-cfa52e09c4ddf6698e3e7b590ab3b9e2a01977dd.tar.xz qemu-cfa52e09c4ddf6698e3e7b590ab3b9e2a01977dd.zip |
hw/arm: Constify VMStateDescription
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210313171150.2122409-2-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/misc')
-rw-r--r-- | hw/misc/mst_fpga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/mst_fpga.c b/hw/misc/mst_fpga.c index edfc35d5f0..2aaadfa966 100644 --- a/hw/misc/mst_fpga.c +++ b/hw/misc/mst_fpga.c @@ -222,7 +222,7 @@ static void mst_fpga_init(Object *obj) sysbus_init_mmio(sbd, &s->iomem); } -static VMStateDescription vmstate_mst_fpga_regs = { +static const VMStateDescription vmstate_mst_fpga_regs = { .name = "mainstone_fpga", .version_id = 0, .minimum_version_id = 0, |