summaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2017-11-06 19:39:04 +0100
committerStefan Berger <stefanb@linux.vnet.ibm.com>2017-12-14 23:39:14 -0500
commit191adc9476371ad94771609d8b9a968d9332a962 (patch)
tree05b60c283bdc390ca1b714500fef0fecfcdcd8bd /backends
parent0bd6c8a9cfa4fd5c25a32ed39f3b8cb786b75b58 (diff)
downloadqemu-191adc9476371ad94771609d8b9a968d9332a962.tar.gz
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 'backends')
-rw-r--r--backends/tpm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/tpm.c b/backends/tpm.c
index 7b108bd5d8..0c48d18775 100644
--- a/backends/tpm.c
+++ b/backends/tpm.c
@@ -148,9 +148,10 @@ TPMInfo *tpm_backend_query_tpm(TPMBackend *s)
{
TPMInfo *info = g_new0(TPMInfo, 1);
TPMBackendClass *k = TPM_BACKEND_GET_CLASS(s);
+ TPMIfClass *tic = TPM_IF_GET_CLASS(s->tpmif);
info->id = g_strdup(s->id);
- info->model = s->fe_model;
+ info->model = tic->model;
if (k->get_tpm_options) {
info->options = k->get_tpm_options(s);
}
@@ -204,7 +205,6 @@ static void tpm_backend_instance_init(Object *obj)
tpm_backend_prop_get_opened,
tpm_backend_prop_set_opened,
NULL);
- s->fe_model = -1;
s->bh = qemu_bh_new(tpm_backend_request_completed_bh, s);
}