]> git.dujemihanovic.xyz Git - u-boot.git/commit
Merge tag 'tpm-master-24062024' of https://source.denx.de/u-boot/custodians/u-boot-tpm
authorTom Rini <trini@konsulko.com>
Mon, 24 Jun 2024 15:49:37 +0000 (09:49 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 24 Jun 2024 15:49:37 +0000 (09:49 -0600)
commit58f7ae116c1c86a5ce1e0220f2c5a2673f7018ce
tree1f113c18373ae94fb1e51f8bc30dcfedf8d03a37
parentc326bb6792240d136e545ab9971aeae2b816088c
parentb73948c785d2bbccf0a76dec92cf50fe5b408c0e
Merge tag 'tpm-master-24062024' of https://source.denx.de/u-boot/custodians/u-boot-tpm

When the EFI TCG measurement code moved from EFI to the TPM subsystem for
general use some prototypes changed from returning efi_status_t to int,
which is more appropriate for the non-EFI APIs. However, some of the
EFI callsites never changed and we ended up assigning the int value to
efi_status_t.

This is unlikely to cause any problems, apart from returning invalid
values on failures and violating the EFI spec.