diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:43:40 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:03 -0600 |
| commit | 766bade2da0f9b1338cbe72aea114cd0922acfc5 (patch) | |
| tree | ee29a71fb6f2784202c8b767c1f173249954b215 /hw/riscv/opentitan.c | |
| parent | 4ef4c30d2ef6d1dcfc58512e6ed273244dcd72cd (diff) | |
| download | focaccia-qemu-766bade2da0f9b1338cbe72aea114cd0922acfc5.tar.gz focaccia-qemu-766bade2da0f9b1338cbe72aea114cd0922acfc5.zip | |
hw/riscv: Constify all Property
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/riscv/opentitan.c')
| -rw-r--r-- | hw/riscv/opentitan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/riscv/opentitan.c b/hw/riscv/opentitan.c index e2830e9dc2..8ce85ea9f7 100644 --- a/hw/riscv/opentitan.c +++ b/hw/riscv/opentitan.c @@ -306,7 +306,7 @@ static void lowrisc_ibex_soc_realize(DeviceState *dev_soc, Error **errp) memmap[IBEX_DEV_IBEX_CFG].base, memmap[IBEX_DEV_IBEX_CFG].size); } -static Property lowrisc_ibex_soc_props[] = { +static const Property lowrisc_ibex_soc_props[] = { DEFINE_PROP_UINT32("resetvec", LowRISCIbexSoCState, resetvec, 0x20000400), DEFINE_PROP_END_OF_LIST() }; |