diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:52:44 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:21 -0600 |
| commit | 55f579773e00000b33eef548ec9a1abac0c21008 (patch) | |
| tree | 02692ec3db45cb654dff0b800d0649e6579617b6 /hw/m68k/next-cube.c | |
| parent | 7f68219cc7b15df35f0543a3d9824584480077eb (diff) | |
| download | focaccia-qemu-55f579773e00000b33eef548ec9a1abac0c21008.tar.gz focaccia-qemu-55f579773e00000b33eef548ec9a1abac0c21008.zip | |
hw/m68k: Constify all Property
Reviewed-by: Thomas Huth <huth@tuxfamily.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/m68k/next-cube.c')
| -rw-r--r-- | hw/m68k/next-cube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/m68k/next-cube.c b/hw/m68k/next-cube.c index 08886d432c..a37ce00874 100644 --- a/hw/m68k/next-cube.c +++ b/hw/m68k/next-cube.c @@ -914,7 +914,7 @@ static void next_pc_realize(DeviceState *dev, Error **errp) * this cpu link property and could instead provide outbound IRQ lines * that the board could wire up to the CPU. */ -static Property next_pc_properties[] = { +static const Property next_pc_properties[] = { DEFINE_PROP_LINK("cpu", NeXTPC, cpu, TYPE_M68K_CPU, M68kCPU *), DEFINE_PROP_END_OF_LIST(), }; |