diff options
author | Philippe Mathieu-Daudé | 2020-06-12 10:54:44 +0200 |
---|---|---|
committer | Stefan Berger | 2020-06-19 13:25:55 +0200 |
commit | ca64b08638e259c313a3e7c3da106116b59be8e9 (patch) | |
tree | 6c379666c5f88d99ef592ef524e3718c7d07445f /hw/tpm/Kconfig | |
parent | hw/tpm: Make 'tpm_util.h' publicly accessible as "sysemu/tpm_util.h" (diff) | |
download | qemu-ca64b08638e259c313a3e7c3da106116b59be8e9.tar.gz qemu-ca64b08638e259c313a3e7c3da106116b59be8e9.tar.xz qemu-ca64b08638e259c313a3e7c3da106116b59be8e9.zip |
tpm: Move backend code under the 'backends/' directory
TPM subsytem is split into backends (see commit f4ede81eed2)
and frontends (see i.e. 3676bc69b35). Keep the emulated
hardware 'frontends' under hw/tpm/, but move the backends
in the backends/tpm/ directory.
Suggested-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20200612085444.8362-13-philmd@redhat.com
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'hw/tpm/Kconfig')
-rw-r--r-- | hw/tpm/Kconfig | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/hw/tpm/Kconfig b/hw/tpm/Kconfig index 5028fd8880..29e82f3c92 100644 --- a/hw/tpm/Kconfig +++ b/hw/tpm/Kconfig @@ -1,7 +1,3 @@ -config TPM_BACKEND - bool - depends on TPM - config TPM_TIS_ISA bool depends on TPM && ISA_BUS @@ -22,17 +18,6 @@ config TPM_CRB depends on TPM && PC select TPM_BACKEND -config TPM_PASSTHROUGH - bool - default y - # FIXME: should check for x86 host as well - depends on TPM_BACKEND && LINUX - -config TPM_EMULATOR - bool - default y - depends on TPM_BACKEND - config TPM_SPAPR bool default y |