diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 17:30:13 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:42 -0600 |
| commit | 89996947ed9dc3bbbb57fa2823cc96a6c14e04ab (patch) | |
| tree | e49cc131b129d9e01cbfbe8478566cc94cf3d42e /hw/watchdog/wdt_imx2.c | |
| parent | 1577a9180f374cd8bca32f8a5e8c8ac8977d7199 (diff) | |
| download | focaccia-qemu-89996947ed9dc3bbbb57fa2823cc96a6c14e04ab.tar.gz focaccia-qemu-89996947ed9dc3bbbb57fa2823cc96a6c14e04ab.zip | |
hw/watchdog: Constify all Property
Reviewed-by: Cédric Le Goater <clg@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/watchdog/wdt_imx2.c')
| -rw-r--r-- | hw/watchdog/wdt_imx2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/watchdog/wdt_imx2.c b/hw/watchdog/wdt_imx2.c index 8162d58afa..61fbd91ee4 100644 --- a/hw/watchdog/wdt_imx2.c +++ b/hw/watchdog/wdt_imx2.c @@ -281,7 +281,7 @@ static void imx2_wdt_realize(DeviceState *dev, Error **errp) } } -static Property imx2_wdt_properties[] = { +static const Property imx2_wdt_properties[] = { DEFINE_PROP_BOOL("pretimeout-support", IMX2WdtState, pretimeout_support, false), DEFINE_PROP_END_OF_LIST() |