ui: correctly reset framebuffer update state after processing dirty regions
[qemu/ar7.git] / stubs / tpm.c
blobc18aac1c739f077aa45c0fd4e55fa90b94470261
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 */
7 #include "qemu/osdep.h"
8 #include "sysemu/tpm.h"
9 #include "qmp-commands.h"
11 int tpm_init(void)
13 return 0;
16 void tpm_cleanup(void)
20 TPMInfoList *qmp_query_tpm(Error **errp)
22 return NULL;
25 TpmTypeList *qmp_query_tpm_types(Error **errp)
27 return NULL;
30 TpmModelList *qmp_query_tpm_models(Error **errp)
32 return NULL;