efi_loader: Use directly version_string variable

Macro U_BOOT_VERSION_STRING is already stored in variable version_string.
So use directly this variable instead of storing U_BOOT_VERSION_STRING into
temporary variable.

Signed-off-by: Pali Rohár <pali@kernel.org>
[trini: This area was reworked since posted, what is here is now really
        inspired by the previous version, so drop Ilias' Acked-by]
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Pali Rohár 2021-08-02 15:18:30 +02:00 committed by Tom Rini
parent a79f823314
commit fa9c5da702

View File

@ -1337,10 +1337,11 @@ out:
*/
static efi_status_t efi_append_scrtm_version(struct udevice *dev)
{
u8 ver[] = U_BOOT_VERSION_STRING;
efi_status_t ret;
ret = tcg2_measure_event(dev, 0, EV_S_CRTM_VERSION, sizeof(ver), ver);
ret = tcg2_measure_event(dev, 0, EV_S_CRTM_VERSION,
strlen(version_string) + 1,
(u8 *)version_string);
return ret;
}