diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:39:35 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:01 -0600 |
commit | 4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd (patch) | |
tree | 2c0b7785d99d1fd1f52e9e2d63b415d296172e97 | |
parent | 90f5755e8a6a791fa67fa860a947770326b54961 (diff) | |
download | qemu-4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd.zip qemu-4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd.tar.gz qemu-4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd.tar.bz2 |
hw/remote: Constify all Property
Reviewed-by: Jagannathan Raman <jag.raman@oracle.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | hw/remote/proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/remote/proxy.c b/hw/remote/proxy.c index 302a0a4..6f84fdd 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(), }; |