diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-29 13:32:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-29 13:32:50 -0500 |
commit | d36bc89be2793a03da151f067d4889d9a32d3908 (patch) | |
tree | 7fde10a06c430caf0ae0db3a44fc3ef06506f313 /lib/efi_loader/efi_hii.c | |
parent | 6f975524cbf7d39c925cb101be9ff09b5e70dbbe (diff) | |
parent | f557cf08b974c359ad3c53a87297d19fe13ff4f0 (diff) |
Merge tag 'efi-2023-01-rc5-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023-01-rc5-2
Documentation:
* Reorganize existing TI docs and add K3 generation page
* Add texinfodocs and infodocs targets
* Update qemu-ppce500 documentation
* Use "changesets" not "csets" in statistics pages
UEFI
* Fix merging of preseeded non-volatile variables
* Fix a return value in the EFI_HII_DATABASE_PROTOCOL
* Set UEFI specification version to 2.10
Diffstat (limited to 'lib/efi_loader/efi_hii.c')
-rw-r--r-- | lib/efi_loader/efi_hii.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_hii.c b/lib/efi_loader/efi_hii.c index 75ff58aafa..27db3be6a1 100644 --- a/lib/efi_loader/efi_hii.c +++ b/lib/efi_loader/efi_hii.c @@ -780,7 +780,7 @@ get_package_list_handle(const struct efi_hii_database_protocol *this, } } - return EFI_EXIT(EFI_NOT_FOUND); + return EFI_EXIT(EFI_INVALID_PARAMETER); } const struct efi_hii_database_protocol efi_hii_database = { |