diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:44:13 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:06 -0600 |
| commit | 93c9015bc5cc14e3d944ac5c7f8aba9e2960bf06 (patch) | |
| tree | 282587b108b1d2b312856f20116e927473345db3 /hw/rtc/pl031.c | |
| parent | 766bade2da0f9b1338cbe72aea114cd0922acfc5 (diff) | |
| download | focaccia-qemu-93c9015bc5cc14e3d944ac5c7f8aba9e2960bf06.tar.gz focaccia-qemu-93c9015bc5cc14e3d944ac5c7f8aba9e2960bf06.zip | |
hw/rtc: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/rtc/pl031.c')
| -rw-r--r-- | hw/rtc/pl031.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/rtc/pl031.c b/hw/rtc/pl031.c index 563bb4b446..1dc8e6e00f 100644 --- a/hw/rtc/pl031.c +++ b/hw/rtc/pl031.c @@ -319,7 +319,7 @@ static const VMStateDescription vmstate_pl031 = { } }; -static Property pl031_properties[] = { +static const Property pl031_properties[] = { /* * True to correctly migrate the tick offset of the RTC. False to * obtain backward migration compatibility with older QEMU versions, |