diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-06-12 10:54:42 +0200 |
|---|---|---|
| committer | Stefan Berger <stefanb@linux.vnet.ibm.com> | 2020-06-19 07:25:42 -0400 |
| commit | a3500613bdf13c7583e292a6de835b8cbfc1e8ca (patch) | |
| tree | 660ae257636971af32b809010bb5a14dc1c61dd1 /hw/tpm/tpm_tis_isa.c | |
| parent | eccc0b0f022e2b19efee5daa1ae448f762cf748f (diff) | |
| download | focaccia-qemu-a3500613bdf13c7583e292a6de835b8cbfc1e8ca.tar.gz focaccia-qemu-a3500613bdf13c7583e292a6de835b8cbfc1e8ca.zip | |
hw/tpm: Move DEFINE_PROP_TPMBE() macro to 'tmp_prop.h' local header
We are going to make "tpm_util.h" publicly accessible by moving it to the include/ directory in the next commit. The DEFINE_PROP_TPMBE() macro is only meaningful for the TPM hardware files (in hw/tpm/), so keep this macro in a local header. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com> Message-id: 20200612085444.8362-11-philmd@redhat.com Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'hw/tpm/tpm_tis_isa.c')
| -rw-r--r-- | hw/tpm/tpm_tis_isa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tpm/tpm_tis_isa.c b/hw/tpm/tpm_tis_isa.c index 42f909ff1e..5faf6231c0 100644 --- a/hw/tpm/tpm_tis_isa.c +++ b/hw/tpm/tpm_tis_isa.c @@ -27,7 +27,7 @@ #include "hw/qdev-properties.h" #include "migration/vmstate.h" #include "hw/acpi/tpm.h" -#include "tpm_util.h" +#include "tpm_prop.h" #include "tpm_tis.h" typedef struct TPMStateISA { |