diff options
| author | Masahisa Kojima <[email protected]> | 2021-09-06 12:04:12 +0900 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2021-09-11 11:02:02 +0200 |
| commit | bad49da2bc4702dc3a12b6a4f07a87a70bf521b4 (patch) | |
| tree | 992204f7e16ee5d43aa7d70f6c945a6bab729e10 | |
| parent | 19e699fb2b7357f2f71ac928499cbb4442f5d576 (diff) | |
efi_loader: boot_service_capability_min should be capitalized
boot_service_capability_min is constant, it should be capitalized.
Signed-off-by: Masahisa Kojima <[email protected]>
Acked-by: Ilias Apalodimas <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
| -rw-r--r-- | include/efi_tcg2.h | 2 | ||||
| -rw-r--r-- | lib/efi_loader/efi_tcg2.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/efi_tcg2.h b/include/efi_tcg2.h index c99384fb005..5a1a36212e5 100644 --- a/include/efi_tcg2.h +++ b/include/efi_tcg2.h @@ -130,7 +130,7 @@ struct efi_tcg2_boot_service_capability { }; /* up to and including the vendor ID (manufacturer_id) field */ -#define boot_service_capability_min \ +#define BOOT_SERVICE_CAPABILITY_MIN \ offsetof(struct efi_tcg2_boot_service_capability, number_of_pcr_banks) #define TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03 "Spec ID Event03" diff --git a/lib/efi_loader/efi_tcg2.c b/lib/efi_loader/efi_tcg2.c index b268a02976c..62ae102033f 100644 --- a/lib/efi_loader/efi_tcg2.c +++ b/lib/efi_loader/efi_tcg2.c @@ -607,8 +607,8 @@ efi_tcg2_get_capability(struct efi_tcg2_protocol *this, goto out; } - if (capability->size < boot_service_capability_min) { - capability->size = boot_service_capability_min; + if (capability->size < BOOT_SERVICE_CAPABILITY_MIN) { + capability->size = BOOT_SERVICE_CAPABILITY_MIN; efi_ret = EFI_BUFFER_TOO_SMALL; goto out; } |
