[PATCH 1/2] efi_loader: in platform_get_rng_device() use EFI_PRINT()
Heinrich Schuchardt <[email protected]>
| Newsgroups | org.u-boot-project.lists.u-boot |
|---|---|
| Message-ID | <[email protected]> |
Use EFI_PRINT() instead of debug() to correctly indent the message. Signed-off-by: Heinrich Schuchardt <[email protected]> --- lib/efi_loader/efi_rng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/efi_loader/efi_rng.c b/lib/efi_loader/efi_rng.c index 7810b4e47ea..9c5a60ea963 100644 --- a/lib/efi_loader/efi_rng.c +++ b/lib/efi_loader/efi_rng.c @@ -31,7 +31,7 @@ __weak efi_status_t platform_get_rng_device(struct udevice **dev) ret = uclass_get_device(UCLASS_RNG, 0, &devp); if (ret) { - debug("Unable to get rng device\n"); + EFI_PRINT("Unable to get rng device\n"); return EFI_DEVICE_ERROR; } -- 2.53.0