]>
Commit | Line | Data |
---|---|---|
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" |
c39f95dc PMD |
11 | |
12 | int tpm_init(void) | |
13 | { | |
14 | return 0; | |
15 | } | |
16 | ||
17 | void tpm_cleanup(void) | |
18 | { | |
19 | } | |
20 | ||
21 | TPMInfoList *qmp_query_tpm(Error **errp) | |
22 | { | |
23 | return NULL; | |
24 | } | |
25 | ||
26 | TpmTypeList *qmp_query_tpm_types(Error **errp) | |
27 | { | |
28 | return NULL; | |
29 | } | |
30 | ||
31 | TpmModelList *qmp_query_tpm_models(Error **errp) | |
32 | { | |
33 | return NULL; | |
34 | } |