aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-12-13 16:48:50 +0000
committerRichard Henderson <richard.henderson@linaro.org>2024-12-15 12:56:17 -0600
commitd2616fe9616c1fd34e36c4b95c7657695f5e8a83 (patch)
tree7fddcb0ef5a853b2cc44ee269213110493ff5f87
parent2ba395a5dfc9f919731f8877e0ae8a5b54394cd5 (diff)
downloadqemu-d2616fe9616c1fd34e36c4b95c7657695f5e8a83.zip
qemu-d2616fe9616c1fd34e36c4b95c7657695f5e8a83.tar.gz
qemu-d2616fe9616c1fd34e36c4b95c7657695f5e8a83.tar.bz2
hw/sparc: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--hw/sparc/sun4m_iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sparc/sun4m_iommu.c b/hw/sparc/sun4m_iommu.c
index 6f765e9..3d6fcdf 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(),
};