]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: fix EFI_ENTRY point on get_active_pcr_banks
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Thu, 19 Oct 2023 16:21:55 +0000 (11:21 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 27 Oct 2023 20:01:47 +0000 (16:01 -0400)
efi_tcg2_get_active_pcr_banks doesn't immediately call the
EFI_ENTRY() wrapper once it enters the function. Move the call a
few lines above to cover the error cases properly as well.

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/efi_tcg2.c

index 7b7926a0d46bfaa7dd225e2bd3afe15140a5b827..626df12a377475e2eaf60401196e8f3945635129 100644 (file)
@@ -1211,12 +1211,13 @@ efi_tcg2_get_active_pcr_banks(struct efi_tcg2_protocol *this,
 {
        efi_status_t ret;
 
+       EFI_ENTRY("%p, %p", this, active_pcr_banks);
+
        if (!this || !active_pcr_banks) {
                ret = EFI_INVALID_PARAMETER;
                goto out;
        }
 
-       EFI_ENTRY("%p, %p", this, active_pcr_banks);
        ret = __get_active_pcr_banks(active_pcr_banks);
 
 out: