diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:53:42 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:29 -0600 |
| commit | f4f2248bbce2208c6946567c0a3155f02ff7b415 (patch) | |
| tree | 18df6565506a50ba9ff1c58fb3c9dbbe194ac24b /hw/mem/sparse-mem.c | |
| parent | 55f579773e00000b33eef548ec9a1abac0c21008 (diff) | |
| download | focaccia-qemu-f4f2248bbce2208c6946567c0a3155f02ff7b415.tar.gz focaccia-qemu-f4f2248bbce2208c6946567c0a3155f02ff7b415.zip | |
hw/mem: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/mem/sparse-mem.c')
| -rw-r--r-- | hw/mem/sparse-mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mem/sparse-mem.c b/hw/mem/sparse-mem.c index 6e8f4f84fb..8d681adfc0 100644 --- a/hw/mem/sparse-mem.c +++ b/hw/mem/sparse-mem.c @@ -96,7 +96,7 @@ static const MemoryRegionOps sparse_mem_ops = { }, }; -static Property sparse_mem_properties[] = { +static const Property sparse_mem_properties[] = { /* The base address of the memory */ DEFINE_PROP_UINT64("baseaddr", SparseMemState, baseaddr, 0x0), /* The length of the sparse memory region */ |