2017-10-24 14:20:43 +02:00
|
|
|
/*
|
|
|
|
* TPM stubs
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
2018-02-11 10:36:01 +01:00
|
|
|
|
2017-10-24 14:20:43 +02:00
|
|
|
#include "qemu/osdep.h"
|
2018-02-11 10:36:01 +01:00
|
|
|
#include "qapi/qapi-commands-tpm.h"
|
2017-10-24 14:20:43 +02:00
|
|
|
#include "sysemu/tpm.h"
|
|
|
|
|
2018-10-17 10:26:53 +02:00
|
|
|
void tpm_init(void)
|
2017-10-24 14:20:43 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tpm_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TPMInfoList *qmp_query_tpm(Error **errp)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TpmTypeList *qmp_query_tpm_types(Error **errp)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TpmModelList *qmp_query_tpm_models(Error **errp)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|