diff options
| author | Eddie James <[email protected]> | 2023-10-24 10:43:47 -0500 |
|---|---|---|
| committer | Ilias Apalodimas <[email protected]> | 2023-10-27 13:08:23 +0300 |
| commit | 73f40716fbadca0bc1eac890fa2c3ca983110330 (patch) | |
| tree | e0927ba0aa593b7573cbfdbdb9a4b08df6dd7f29 /include | |
| parent | e29b932aa07fa0226d325b35d96cd4eea0370129 (diff) | |
tpm: Fix spelling for tpmu_ha union
tmpu -> tpmu
Signed-off-by: Eddie James <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/tpm-v2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tpm-v2.h b/include/tpm-v2.h index 2b6980e441d..6684033debe 100644 --- a/include/tpm-v2.h +++ b/include/tpm-v2.h @@ -169,7 +169,7 @@ struct tcg_pcr_event { /** * Definition of TPMU_HA Union */ -union tmpu_ha { +union tpmu_ha { u8 sha1[TPM2_SHA1_DIGEST_SIZE]; u8 sha256[TPM2_SHA256_DIGEST_SIZE]; u8 sm3_256[TPM2_SM3_256_DIGEST_SIZE]; @@ -185,7 +185,7 @@ union tmpu_ha { */ struct tpmt_ha { u16 hash_alg; - union tmpu_ha digest; + union tpmu_ha digest; } __packed; /** |
