diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:41:43 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:53:54 -0600 |
commit | 1e2a0e1d9aedfe62393c4f343cdcfa9e290f5438 (patch) | |
tree | 8065fcf6b1a43bafe911c1b517eb9d13a3d951a9 | |
parent | eeed7aed0696af646261e20e18daae3fb96d2a6f (diff) | |
download | qemu-1e2a0e1d9aedfe62393c4f343cdcfa9e290f5438.zip qemu-1e2a0e1d9aedfe62393c4f343cdcfa9e290f5438.tar.gz qemu-1e2a0e1d9aedfe62393c4f343cdcfa9e290f5438.tar.bz2 |
target/avr: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | target/avr/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/avr/cpu.c b/target/avr/cpu.c index 3132842..a7529a1 100644 --- a/target/avr/cpu.c +++ b/target/avr/cpu.c @@ -149,7 +149,7 @@ static void avr_cpu_initfn(Object *obj) sizeof(cpu->env.intsrc) * 8); } -static Property avr_cpu_properties[] = { +static const Property avr_cpu_properties[] = { DEFINE_PROP_UINT32("init-sp", AVRCPU, init_sp, 0), DEFINE_PROP_END_OF_LIST() }; |