From: Richard Henderson Date: Fri, 13 Dec 2024 16:48:50 +0000 (+0000) Subject: hw/sparc: Constify all Property X-Git-Tag: v10.0.0-rc0~117^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2616fe9616c1fd34e36c4b95c7657695f5e8a83;p=thirdparty%2Fqemu.git hw/sparc: Constify all Property Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/hw/sparc/sun4m_iommu.c b/hw/sparc/sun4m_iommu.c index 6f765e97e46..3d6fcdf5760 100644 --- a/hw/sparc/sun4m_iommu.c +++ b/hw/sparc/sun4m_iommu.c @@ -368,7 +368,7 @@ static void iommu_init(Object *obj) sysbus_init_mmio(dev, &s->iomem); } -static Property iommu_properties[] = { +static const Property iommu_properties[] = { DEFINE_PROP_UINT32("version", IOMMUState, version, 0), DEFINE_PROP_END_OF_LIST(), };