diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:43:23 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:09 -0600 |
| commit | 9eb5c799072c521839650fc375e9d5b546296370 (patch) | |
| tree | b93d25e0a53746830a21612955a34aef8103b4c0 /hw/input/virtio-input.c | |
| parent | aaa1f1a5246c818a39d15c286bb8ace377501d00 (diff) | |
| download | focaccia-qemu-9eb5c799072c521839650fc375e9d5b546296370.tar.gz focaccia-qemu-9eb5c799072c521839650fc375e9d5b546296370.zip | |
hw/input: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/input/virtio-input.c')
| -rw-r--r-- | hw/input/virtio-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c index 3bcdae41b2..edcd94dedb 100644 --- a/hw/input/virtio-input.c +++ b/hw/input/virtio-input.c @@ -300,7 +300,7 @@ static const VMStateDescription vmstate_virtio_input = { .post_load = virtio_input_post_load, }; -static Property virtio_input_properties[] = { +static const Property virtio_input_properties[] = { DEFINE_PROP_STRING("serial", VirtIOInput, serial), DEFINE_PROP_END_OF_LIST(), }; |