diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-11-06 19:39:04 +0100 |
|---|---|---|
| committer | Stefan Berger <stefanb@linux.vnet.ibm.com> | 2017-12-14 23:39:14 -0500 |
| commit | 191adc9476371ad94771609d8b9a968d9332a962 (patch) | |
| tree | 05b60c283bdc390ca1b714500fef0fecfcdcd8bd /include/sysemu/tpm.h | |
| parent | 0bd6c8a9cfa4fd5c25a32ed39f3b8cb786b75b58 (diff) | |
| download | focaccia-qemu-191adc9476371ad94771609d8b9a968d9332a962.tar.gz focaccia-qemu-191adc9476371ad94771609d8b9a968d9332a962.zip | |
tpm-be: ask model to the TPM interface
No need to store the mode in the backend, or to let the frontend set it itself. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'include/sysemu/tpm.h')
| -rw-r--r-- | include/sysemu/tpm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sysemu/tpm.h b/include/sysemu/tpm.h index e0879620e7..7b407caf25 100644 --- a/include/sysemu/tpm.h +++ b/include/sysemu/tpm.h @@ -40,6 +40,7 @@ typedef struct TPMIf { typedef struct TPMIfClass { InterfaceClass parent_class; + enum TpmModel model; void (*request_completed)(TPMIf *obj); } TPMIfClass; |