summary refs log tree commit diff stats
path: root/hw/char/renesas_sci.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-12-13 15:21:28 +0000
committerRichard Henderson <richard.henderson@linaro.org>2024-12-15 12:54:40 -0600
commit312f37d18ad53e2e62fdd2dda7c38322866d77f1 (patch)
treed3d293b519833462940f427f97b3ed97a6ca7558 /hw/char/renesas_sci.c
parent4aef8b63e48ce459870c5ed78e86c0eaa331edac (diff)
downloadfocaccia-qemu-312f37d18ad53e2e62fdd2dda7c38322866d77f1.tar.gz
focaccia-qemu-312f37d18ad53e2e62fdd2dda7c38322866d77f1.zip
hw/char: Constify all Property
Acked-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/char/renesas_sci.c')
-rw-r--r--hw/char/renesas_sci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/char/renesas_sci.c b/hw/char/renesas_sci.c
index 7ce0408b0c..516b48648b 100644
--- a/hw/char/renesas_sci.c
+++ b/hw/char/renesas_sci.c
@@ -319,7 +319,7 @@ static const VMStateDescription vmstate_rsci = {
     }
 };
 
-static Property rsci_properties[] = {
+static const Property rsci_properties[] = {
     DEFINE_PROP_UINT64("input-freq", RSCIState, input_freq, 0),
     DEFINE_PROP_CHR("chardev", RSCIState, chr),
     DEFINE_PROP_END_OF_LIST(),