summary refs log tree commit diff stats
path: root/hw/isa/vt82c686.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2025-02-10 09:49:30 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-02-16 14:26:07 +0100
commitd31f1185fb029b44c439a6961a6cb087df6567d9 (patch)
tree252d1d945b42d9ee9d59d03933608bb066a3d3ed /hw/isa/vt82c686.c
parent94dbecb994a38cafa057e5bfa515cef6faadcea4 (diff)
downloadfocaccia-qemu-d31f1185fb029b44c439a6961a6cb087df6567d9.tar.gz
focaccia-qemu-d31f1185fb029b44c439a6961a6cb087df6567d9.zip
hw: Declare various const data as 'const'
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250210133134.90879-7-philmd@linaro.org>
Diffstat (limited to 'hw/isa/vt82c686.c')
-rw-r--r--hw/isa/vt82c686.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/vt82c686.c b/hw/isa/vt82c686.c
index 6f44b381a5..43bd67eeef 100644
--- a/hw/isa/vt82c686.c
+++ b/hw/isa/vt82c686.c
@@ -224,7 +224,7 @@ static void via_pm_class_init(ObjectClass *klass, void *data)
 {
     DeviceClass *dc = DEVICE_CLASS(klass);
     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
-    ViaPMInitInfo *info = data;
+    const ViaPMInitInfo *info = data;
 
     k->realize = via_pm_realize;
     k->config_write = pm_write_config;