[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 61/71] hw/tpm: Constify all Property
From: |
Richard Henderson |
Subject: |
[PATCH 61/71] hw/tpm: Constify all Property |
Date: |
Fri, 13 Dec 2024 13:07:35 -0600 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
hw/tpm/tpm_crb.c | 2 +-
hw/tpm/tpm_spapr.c | 2 +-
hw/tpm/tpm_tis_i2c.c | 2 +-
hw/tpm/tpm_tis_isa.c | 2 +-
hw/tpm/tpm_tis_sysbus.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/tpm/tpm_crb.c b/hw/tpm/tpm_crb.c
index 5cd5a2533b..2bf6e7ffe9 100644
--- a/hw/tpm/tpm_crb.c
+++ b/hw/tpm/tpm_crb.c
@@ -226,7 +226,7 @@ static const VMStateDescription vmstate_tpm_crb = {
}
};
-static Property tpm_crb_properties[] = {
+static const Property tpm_crb_properties[] = {
DEFINE_PROP_TPMBE("tpmdev", CRBState, tpmbe),
DEFINE_PROP_BOOL("ppi", CRBState, ppi_enabled, true),
DEFINE_PROP_END_OF_LIST(),
diff --git a/hw/tpm/tpm_spapr.c b/hw/tpm/tpm_spapr.c
index 5f7a0dfc61..e15b67dd45 100644
--- a/hw/tpm/tpm_spapr.c
+++ b/hw/tpm/tpm_spapr.c
@@ -364,7 +364,7 @@ static const VMStateDescription vmstate_spapr_vtpm = {
}
};
-static Property tpm_spapr_properties[] = {
+static const Property tpm_spapr_properties[] = {
DEFINE_SPAPR_PROPERTIES(SpaprTpmState, vdev),
DEFINE_PROP_TPMBE("tpmdev", SpaprTpmState, be_driver),
DEFINE_PROP_END_OF_LIST(),
diff --git a/hw/tpm/tpm_tis_i2c.c b/hw/tpm/tpm_tis_i2c.c
index c5548b0a45..b27af230cd 100644
--- a/hw/tpm/tpm_tis_i2c.c
+++ b/hw/tpm/tpm_tis_i2c.c
@@ -491,7 +491,7 @@ static int tpm_tis_i2c_send(I2CSlave *i2c, uint8_t data)
return 1;
}
-static Property tpm_tis_i2c_properties[] = {
+static const Property tpm_tis_i2c_properties[] = {
DEFINE_PROP_TPMBE("tpmdev", TPMStateI2C, state.be_driver),
DEFINE_PROP_END_OF_LIST(),
};
diff --git a/hw/tpm/tpm_tis_isa.c b/hw/tpm/tpm_tis_isa.c
index 21109edcaa..9b2160972a 100644
--- a/hw/tpm/tpm_tis_isa.c
+++ b/hw/tpm/tpm_tis_isa.c
@@ -91,7 +91,7 @@ static void tpm_tis_isa_reset(DeviceState *dev)
return tpm_tis_reset(s);
}
-static Property tpm_tis_isa_properties[] = {
+static const Property tpm_tis_isa_properties[] = {
DEFINE_PROP_UINT32("irq", TPMStateISA, state.irq_num, TPM_TIS_IRQ),
DEFINE_PROP_TPMBE("tpmdev", TPMStateISA, state.be_driver),
DEFINE_PROP_BOOL("ppi", TPMStateISA, state.ppi_enabled, true),
diff --git a/hw/tpm/tpm_tis_sysbus.c b/hw/tpm/tpm_tis_sysbus.c
index 967f264634..88c1f1e478 100644
--- a/hw/tpm/tpm_tis_sysbus.c
+++ b/hw/tpm/tpm_tis_sysbus.c
@@ -90,7 +90,7 @@ static void tpm_tis_sysbus_reset(DeviceState *dev)
return tpm_tis_reset(s);
}
-static Property tpm_tis_sysbus_properties[] = {
+static const Property tpm_tis_sysbus_properties[] = {
DEFINE_PROP_UINT32("irq", TPMStateSysBus, state.irq_num, TPM_TIS_IRQ),
DEFINE_PROP_TPMBE("tpmdev", TPMStateSysBus, state.be_driver),
DEFINE_PROP_END_OF_LIST(),
--
2.43.0
- [PATCH 48/71] hw/pci: Constify all Property, (continued)
- [PATCH 48/71] hw/pci: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 51/71] hw/riscv: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 52/71] hw/rtc: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 53/71] hw/rx: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 54/71] hw/s390x: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 56/71] hw/sd: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 57/71] hw/sparc: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 58/71] hw/sparc64: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 61/71] hw/tpm: Constify all Property,
Richard Henderson <=
- [PATCH 62/71] hw/tricore: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 63/71] hw/ufs: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 03/71] target/hexagon: Constify all Property, Richard Henderson, 2024/12/13
- [PULL 2/4] tcg/riscv: Fix StoreStore barrier generation, Richard Henderson, 2024/12/13
- [PATCH 63/71] hw/ufs: Constify all Property, Richard Henderson, 2024/12/13