diff options
author | Tom Rini <trini@konsulko.com> | 2022-01-22 15:43:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-22 15:43:36 -0500 |
commit | da158ec5f2db86d88a631c05c540ba5ee1937a77 (patch) | |
tree | 2aec2712bc2db6417fc9e5660b8a5c2e7b04ecee /lib/efi_loader/efi_rng.c | |
parent | e6786b0354372c8a68d01e4d633a19cdce373b70 (diff) | |
parent | f5e9035043fb48baea93ccb3165e75f486906213 (diff) |
Merge tag 'efi-2022-04-rc1-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-04-rc1-2
Documentation:
* describe printf() format codes
UEFI
* enable more algorithms for UEFI image verification, e.g. SHA256-RSA2048
General
* simplify printing short texts for GUIDs
* provide a unit test for printing GUIDs
Diffstat (limited to 'lib/efi_loader/efi_rng.c')
-rw-r--r-- | lib/efi_loader/efi_rng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_rng.c b/lib/efi_loader/efi_rng.c index 0e065468562..bb11d8d0e0c 100644 --- a/lib/efi_loader/efi_rng.c +++ b/lib/efi_loader/efi_rng.c @@ -122,7 +122,7 @@ static efi_status_t EFIAPI getrng(struct efi_rng_protocol *this, } if (rng_algorithm) { - EFI_PRINT("RNG algorithm %pUl\n", rng_algorithm); + EFI_PRINT("RNG algorithm %pUs\n", rng_algorithm); if (guidcmp(rng_algorithm, &rng_raw_guid)) { status = EFI_UNSUPPORTED; goto back; |