]> git.proxmox.com Git - mirror_qemu.git/commit
tpm: Move backend code under the 'backends/' directory
authorPhilippe Mathieu-Daudé <philmd@redhat.com>
Fri, 12 Jun 2020 08:54:44 +0000 (10:54 +0200)
committerStefan Berger <stefanb@linux.vnet.ibm.com>
Fri, 19 Jun 2020 11:25:55 +0000 (07:25 -0400)
commitca64b08638e259c313a3e7c3da106116b59be8e9
tree6c379666c5f88d99ef592ef524e3718c7d07445f
parent0f7d2148201932c6a02b310543b1e50503a0ab2d
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>
21 files changed:
Makefile
Makefile.objs
backends/Kconfig [new file with mode: 0644]
backends/tpm/Kconfig [new file with mode: 0644]
backends/tpm/Makefile.objs
backends/tpm/tpm_emulator.c [new file with mode: 0644]
backends/tpm/tpm_int.h [new file with mode: 0644]
backends/tpm/tpm_ioctl.h [new file with mode: 0644]
backends/tpm/tpm_passthrough.c [new file with mode: 0644]
backends/tpm/tpm_util.c [new file with mode: 0644]
backends/tpm/trace-events [new file with mode: 0644]
docs/specs/tpm.rst
hw/tpm/Kconfig
hw/tpm/Makefile.objs
hw/tpm/tpm_emulator.c [deleted file]
hw/tpm/tpm_int.h [deleted file]
hw/tpm/tpm_ioctl.h [deleted file]
hw/tpm/tpm_passthrough.c [deleted file]
hw/tpm/tpm_util.c [deleted file]
hw/tpm/trace-events
tests/qtest/tpm-emu.c