diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:52:29 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:17 -0600 |
commit | 9aec5dc3a41f6cf821d71565d9cd30bfed9541f0 (patch) | |
tree | 1b8aceb3683731dbbd210f9ab9b8194d79f03845 /cpu-target.c | |
parent | 3834cc6f8fa5c3d8e82e9790fef66b94f3e97e5d (diff) | |
download | qemu-9aec5dc3a41f6cf821d71565d9cd30bfed9541f0.zip qemu-9aec5dc3a41f6cf821d71565d9cd30bfed9541f0.tar.gz qemu-9aec5dc3a41f6cf821d71565d9cd30bfed9541f0.tar.bz2 |
cpu-target: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'cpu-target.c')
-rw-r--r-- | cpu-target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-target.c b/cpu-target.c index 499facf..2ae07a7 100644 --- a/cpu-target.c +++ b/cpu-target.c @@ -183,7 +183,7 @@ void cpu_exec_unrealizefn(CPUState *cpu) * This can't go in hw/core/cpu.c because that file is compiled only * once for both user-mode and system builds. */ -static Property cpu_common_props[] = { +static const Property cpu_common_props[] = { #ifdef CONFIG_USER_ONLY /* * Create a property for the user-only object, so users can |