TPM instances don't expose any "ppi" property anymore, remove that dead code.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- include/system/tpm.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/system/tpm.h b/include/system/tpm.h index 9458ad6668a..874068d19a9 100644 --- a/include/system/tpm.h +++ b/include/system/tpm.h @@ -13,7 +13,6 @@ #define QEMU_TPM_H #include "qapi/qapi-types-tpm.h" -#include "qapi/error.h" #include "qom/object.h" #ifdef CONFIG_TPM @@ -85,10 +84,7 @@ static inline bool tpm_ppi_enabled(TPMIf *ti) if (!ti) { return false; } - if (TPM_IF_GET_CLASS(ti)->ppi_enabled) { - return true; - } - return object_property_get_bool(OBJECT(ti), "ppi", &error_abort); + return TPM_IF_GET_CLASS(ti)->ppi_enabled; } #else /* CONFIG_TPM */ -- 2.53.0
