mirror of https://gitee.com/openkylin/qemu.git
tpm: Extend sts register to 32 bit
More recent TIS specs extend the STS register to 32 bit. While we don't store the TIS interface state, yet, we can extend it without sideeffects. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
a6027b0f4b
commit
9fdc694635
|
@ -41,7 +41,7 @@ typedef enum {
|
|||
typedef struct TPMLocality {
|
||||
TPMTISState state;
|
||||
uint8_t access;
|
||||
uint8_t sts;
|
||||
uint32_t sts;
|
||||
uint32_t inte;
|
||||
uint32_t ints;
|
||||
|
||||
|
|
Loading…
Reference in New Issue