summaryrefslogtreecommitdiffstats
path: root/src/commonlib
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2023-03-29 21:21:46 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-04-03 19:58:25 +0000
commit2014cad94cac819739ffdf8fc02b9121998d6681 (patch)
tree60f27ea6e46070a0b3d523b7a59731ff590251eb /src/commonlib
parent46cd1b5dc97d4335d0875a3c70d7c2e29a7a1eba (diff)
downloadcoreboot-2014cad94cac819739ffdf8fc02b9121998d6681.tar.gz
coreboot-2014cad94cac819739ffdf8fc02b9121998d6681.tar.bz2
coreboot-2014cad94cac819739ffdf8fc02b9121998d6681.zip
commonlib/coreboot_tables.h: Fix typo in enum type name
Fix a typo in an enum's type name, "tmp" ---> "tpm". The enum type is not used anywhere in the coreboot tree. Change-Id: Ie7529e7ee80aa9661ec053da8211c2c3295b3942 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74120 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer Reviewed-by: Benjamin Doron <benjamin.doron00@gmail.com> Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Diffstat (limited to 'src/commonlib')
-rw-r--r--src/commonlib/include/commonlib/coreboot_tables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonlib/include/commonlib/coreboot_tables.h b/src/commonlib/include/commonlib/coreboot_tables.h
index 1e8357798a66..e646b8bf53a8 100644
--- a/src/commonlib/include/commonlib/coreboot_tables.h
+++ b/src/commonlib/include/commonlib/coreboot_tables.h
@@ -537,7 +537,7 @@ struct lb_smmstorev2 {
uint8_t unused[3]; /* Set to zero */
};
-enum lb_tmp_ppi_tpm_version {
+enum lb_tpm_ppi_tpm_version {
LB_TPM_VERSION_UNSPEC = 0,
LB_TPM_VERSION_TPM_VERSION_1_2,
LB_TPM_VERSION_TPM_VERSION_2,