diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:44:52 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:08 -0600 |
commit | 521e2be94d4e1cebe0e9387bd1124d5148b69da2 (patch) | |
tree | 13f9a883286535aff4f7710431eceac79c450516 /hw/rx | |
parent | 93c9015bc5cc14e3d944ac5c7f8aba9e2960bf06 (diff) | |
download | qemu-521e2be94d4e1cebe0e9387bd1124d5148b69da2.zip qemu-521e2be94d4e1cebe0e9387bd1124d5148b69da2.tar.gz qemu-521e2be94d4e1cebe0e9387bd1124d5148b69da2.tar.bz2 |
hw/rx: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/rx')
-rw-r--r-- | hw/rx/rx62n.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/rx/rx62n.c b/hw/rx/rx62n.c index 560f53a..dfa27bc 100644 --- a/hw/rx/rx62n.c +++ b/hw/rx/rx62n.c @@ -257,7 +257,7 @@ static void rx62n_realize(DeviceState *dev, Error **errp) register_sci(s, 0); } -static Property rx62n_properties[] = { +static const Property rx62n_properties[] = { DEFINE_PROP_LINK("main-bus", RX62NState, sysmem, TYPE_MEMORY_REGION, MemoryRegion *), DEFINE_PROP_BOOL("load-kernel", RX62NState, kernel, false), |