ppc: Don't use CPUPPCState::irq_input_state with modern Book3s CPU models
[qemu/ar7.git] / stubs / tpm.c
blob66c99d667dd68287b721a08d5dc6b5923f6d65d1
1 /*
2 * TPM stubs
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
8 #include "qemu/osdep.h"
9 #include "qapi/qapi-commands-tpm.h"
10 #include "sysemu/tpm.h"
11 #include "hw/acpi/tpm.h"
13 void tpm_init(void)
17 void tpm_cleanup(void)
21 TPMInfoList *qmp_query_tpm(Error **errp)
23 return NULL;
26 TpmTypeList *qmp_query_tpm_types(Error **errp)
28 return NULL;
31 TpmModelList *qmp_query_tpm_models(Error **errp)
33 return NULL;
36 void tpm_build_ppi_acpi(TPMIf *tpm, Aml *dev)