aboutsummaryrefslogtreecommitdiff
path: root/hw/tpm/tpm_emulator.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2017-10-10 00:55:57 +0200
committerStefan Berger <stefanb@linux.vnet.ibm.com>2017-10-19 11:42:29 -0400
commitd2809766250d0e6b358588819c6c2e422685edfe (patch)
treec2131386621368bc0e9643a26a9cc897d56cbe75 /hw/tpm/tpm_emulator.c
parentc106ede9c85bf4b38c52dbee96b00c2aa0a97dee (diff)
tpm: remove locty_data from TPMState
Keep it internal to tpm-tis instead. 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 'hw/tpm/tpm_emulator.c')
-rw-r--r--hw/tpm/tpm_emulator.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/tpm/tpm_emulator.c b/hw/tpm/tpm_emulator.c
index a613cec456..6500b86b41 100644
--- a/hw/tpm/tpm_emulator.c
+++ b/hw/tpm/tpm_emulator.c
@@ -180,8 +180,7 @@ static void tpm_emulator_handle_request(TPMBackend *tb, TPMBackendCmd *cmd)
DPRINTF("processing TPM command");
- if (tpm_emulator_set_locality(tpm_emu,
- tb->tpm_state->locty_number, &err) < 0) {
+ if (tpm_emulator_set_locality(tpm_emu, cmd->locty, &err) < 0) {
goto error;
}