]> git.proxmox.com Git - mirror_qemu.git/blame - stubs/tpm.c
numa: deprecate implict memory distribution between nodes
[mirror_qemu.git] / stubs / tpm.c
CommitLineData
c39f95dc
PMD
1/*
2 * TPM stubs
3 *
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 */
9af23989 7
c39f95dc 8#include "qemu/osdep.h"
9af23989 9#include "qapi/qapi-commands-tpm.h"
c39f95dc 10#include "sysemu/tpm.h"
ac6dd31e 11#include "hw/acpi/tpm.h"
c39f95dc 12
d10e05f1 13void tpm_init(void)
c39f95dc 14{
c39f95dc
PMD
15}
16
17void tpm_cleanup(void)
18{
19}
20
21TPMInfoList *qmp_query_tpm(Error **errp)
22{
23 return NULL;
24}
25
26TpmTypeList *qmp_query_tpm_types(Error **errp)
27{
28 return NULL;
29}
30
31TpmModelList *qmp_query_tpm_models(Error **errp)
32{
33 return NULL;
34}
ac6dd31e
SB
35
36void tpm_build_ppi_acpi(TPMIf *tpm, Aml *dev)
37{
38}