diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:31:19 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:51 -0600 |
commit | d432edd56c270d3b7322d85489bd45116bd7e2e2 (patch) | |
tree | 83c351ad7e7082d5a5a51147252628a3de2ee73b /hw/display/ati.c | |
parent | 2a3f565c529088df051f3cf1d34f6389626af261 (diff) | |
download | qemu-d432edd56c270d3b7322d85489bd45116bd7e2e2.zip qemu-d432edd56c270d3b7322d85489bd45116bd7e2e2.tar.gz qemu-d432edd56c270d3b7322d85489bd45116bd7e2e2.tar.bz2 |
hw/display: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/display/ati.c')
-rw-r--r-- | hw/display/ati.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/ati.c b/hw/display/ati.c index 593a253..e24e092 100644 --- a/hw/display/ati.c +++ b/hw/display/ati.c @@ -1039,7 +1039,7 @@ static void ati_vga_exit(PCIDevice *dev) graphic_console_close(s->vga.con); } -static Property ati_vga_properties[] = { +static const Property ati_vga_properties[] = { DEFINE_PROP_UINT32("vgamem_mb", ATIVGAState, vga.vram_size_mb, 16), DEFINE_PROP_STRING("model", ATIVGAState, model), DEFINE_PROP_UINT16("x-device-id", ATIVGAState, dev_id, |