diff options
author | Peter Maydell | 2021-06-15 17:33:05 +0200 |
---|---|---|
committer | Peter Maydell | 2021-06-15 17:33:05 +0200 |
commit | 1dd259ae24a26d8a987ab83aefb5c04dbe5f4b2a (patch) | |
tree | 1ea8462dca5bf1f009dc9a08c07194cc96fb0433 /stubs/tpm.c | |
parent | Merge remote-tracking branch 'remotes/berrange-gitlab/tags/misc-fixes-pull-re... (diff) | |
parent | tpm: Return QMP error when TPM is disabled in build (diff) | |
download | qemu-1dd259ae24a26d8a987ab83aefb5c04dbe5f4b2a.tar.gz qemu-1dd259ae24a26d8a987ab83aefb5c04dbe5f4b2a.tar.xz qemu-1dd259ae24a26d8a987ab83aefb5c04dbe5f4b2a.zip |
Merge remote-tracking branch 'remotes/stefanberger/tags/pull-tpm-2021-06-15-1' into staging
Merge tpm 2021/06/15 v1
# gpg: Signature made Tue 15 Jun 2021 16:09:31 BST
# gpg: using RSA key B818B9CADF9089C2D5CEC66B75AD65802A0B4211
# gpg: Good signature from "Stefan Berger <stefanb@linux.vnet.ibm.com>" [unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: B818 B9CA DF90 89C2 D5CE C66B 75AD 6580 2A0B 4211
* remotes/stefanberger/tags/pull-tpm-2021-06-15-1:
tpm: Return QMP error when TPM is disabled in build
sysemu: Make TPM structures inaccessible if CONFIG_TPM is not defined
acpi: Eliminate all TPM related code if CONFIG_TPM is not set
arm: Eliminate all TPM related code if CONFIG_TPM is not set
i386: Eliminate all TPM related code if CONFIG_TPM is not set
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'stubs/tpm.c')
-rw-r--r-- | stubs/tpm.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/stubs/tpm.c b/stubs/tpm.c deleted file mode 100644 index 9bded191d9..0000000000 --- a/stubs/tpm.c +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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. - */ - -#include "qemu/osdep.h" -#include "qapi/qapi-commands-tpm.h" -#include "sysemu/tpm.h" -#include "hw/acpi/tpm.h" - -int tpm_init(void) -{ - return 0; -} - -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; -} - -void tpm_build_ppi_acpi(TPMIf *tpm, Aml *dev) -{ -} |