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/vhost-user-gpu.c | |
| parent | 2a3f565c529088df051f3cf1d34f6389626af261 (diff) | |
| download | focaccia-qemu-d432edd56c270d3b7322d85489bd45116bd7e2e2.tar.gz focaccia-qemu-d432edd56c270d3b7322d85489bd45116bd7e2e2.zip | |
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/vhost-user-gpu.c')
| -rw-r--r-- | hw/display/vhost-user-gpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/vhost-user-gpu.c b/hw/display/vhost-user-gpu.c index 14548f1a57..a36eddcb12 100644 --- a/hw/display/vhost-user-gpu.c +++ b/hw/display/vhost-user-gpu.c @@ -645,7 +645,7 @@ static struct vhost_dev *vhost_user_gpu_get_vhost(VirtIODevice *vdev) return g->vhost ? &g->vhost->dev : NULL; } -static Property vhost_user_gpu_properties[] = { +static const Property vhost_user_gpu_properties[] = { VIRTIO_GPU_BASE_PROPERTIES(VhostUserGPU, parent_obj.conf), DEFINE_PROP_END_OF_LIST(), }; |