From: Richard Henderson Date: Fri, 13 Dec 2024 16:39:35 +0000 (+0000) Subject: hw/remote: Constify all Property X-Git-Tag: v10.0.0-rc0~117^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd;p=thirdparty%2Fqemu.git hw/remote: Constify all Property Reviewed-by: Jagannathan Raman Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/hw/remote/proxy.c b/hw/remote/proxy.c index 302a0a4d4df..6f84fdd3faf 100644 --- a/hw/remote/proxy.c +++ b/hw/remote/proxy.c @@ -191,7 +191,7 @@ static void pci_proxy_write_config(PCIDevice *d, uint32_t addr, uint32_t val, config_op_send(PCI_PROXY_DEV(d), addr, &val, len, MPQEMU_CMD_PCI_CFGWRITE); } -static Property proxy_properties[] = { +static const Property proxy_properties[] = { DEFINE_PROP_STRING("fd", PCIProxyDev, fd), DEFINE_PROP_END_OF_LIST(), };