diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:35:45 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:59 -0600 |
| commit | e923f5e1b853ac80e96b416143300af9d189af8e (patch) | |
| tree | c0a947cab9beb57fa8a23cf924783a88ecc62673 /hw/hyperv/syndbg.c | |
| parent | de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207 (diff) | |
| download | focaccia-qemu-e923f5e1b853ac80e96b416143300af9d189af8e.tar.gz focaccia-qemu-e923f5e1b853ac80e96b416143300af9d189af8e.zip | |
hw/hyperv: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/hyperv/syndbg.c')
| -rw-r--r-- | hw/hyperv/syndbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/hyperv/syndbg.c b/hw/hyperv/syndbg.c index 065e12fb1e..0193addd42 100644 --- a/hw/hyperv/syndbg.c +++ b/hw/hyperv/syndbg.c @@ -366,7 +366,7 @@ static const VMStateDescription vmstate_hv_syndbg = { .unmigratable = 1, }; -static Property hv_syndbg_properties[] = { +static const Property hv_syndbg_properties[] = { DEFINE_PROP_STRING("host_ip", HvSynDbg, host_ip), DEFINE_PROP_UINT16("host_port", HvSynDbg, host_port, 50000), DEFINE_PROP_BOOL("use_hcalls", HvSynDbg, use_hcalls, false), |