[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/8] hw/tpm: Include missing 'qemu/option.h' header
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 2/8] hw/tpm: Include missing 'qemu/option.h' header |
Date: |
Wed, 10 Jun 2020 22:02:41 +0200 |
Files using the TPM_STANDARD_CMDLINE_OPTS macro declared in
"tpm_int.h" will use QEMU_OPT_STRING definition declared in
"qemu/option.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
hw/tpm/tpm_int.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hw/tpm/tpm_int.h b/hw/tpm/tpm_int.h
index 3fb28a9d6c..fd5ebc6489 100644
--- a/hw/tpm/tpm_int.h
+++ b/hw/tpm/tpm_int.h
@@ -12,6 +12,8 @@
#ifndef TPM_TPM_INT_H
#define TPM_TPM_INT_H
+#include "qemu/option.h"
+
#define TPM_STANDARD_CMDLINE_OPTS \
{ \
.name = "type", \
--
2.21.3
- [PATCH 0/8] tpm: Split hw/ vs backends/, Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 1/8] hw/tpm: Do not include 'qemu/osdep.h' in header, Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 2/8] hw/tpm: Include missing 'qemu/option.h' header,
Philippe Mathieu-Daudé <=
- [PATCH 3/8] hw/tpm: Move 'hw/acpi/tpm.h' inclusion from header to sources, Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 4/8] hw/tpm: Remove unnecessary 'tpm_int.h' header inclusion, Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 5/8] hw/tpm: Move few declarations from 'tpm_util.h' to 'tpm_int.h', Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 6/8] hw/tpm: Move DEFINE_PROP_TPMBE() macro to 'tmp_prop.h' local header, Philippe Mathieu-Daudé, 2020/06/10
- [PATCH 7/8] hw/tpm: Make 'tpm_util.h' publicly accessible as "sysemu/tpm_util.h", Philippe Mathieu-Daudé, 2020/06/10