aboutsummaryrefslogtreecommitdiff
path: root/lib/efi_loader
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-04-06 16:36:16 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2019-04-07 14:17:06 +0200
commit19b2d895fb16f4c22e19125c84e3616c35e9ded7 (patch)
tree973a3dd4c45474def5b0c7af53f4f311103f4cb3 /lib/efi_loader
parentd7e0b0109ebed35c7b91545417e6f7a28cb540d9 (diff)
downloadu-boot-19b2d895fb16f4c22e19125c84e3616c35e9ded7.zip
u-boot-19b2d895fb16f4c22e19125c84e3616c35e9ded7.tar.gz
u-boot-19b2d895fb16f4c22e19125c84e3616c35e9ded7.tar.bz2
efi_loader: debug output file handle in efi_file_open()
For debugging it is helpful to know the address of the file handle created by the Open() method of the EFI file protocol. So let's write it with EFI_PRINT(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r--lib/efi_loader/efi_file.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
index 0483403..be3e55f 100644
--- a/lib/efi_loader/efi_file.c
+++ b/lib/efi_loader/efi_file.c
@@ -257,10 +257,12 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
/* Open file */
*new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
- if (*new_handle)
+ if (*new_handle) {
+ EFI_PRINT("file handle %p\n", *new_handle);
ret = EFI_SUCCESS;
- else
+ } else {
ret = EFI_NOT_FOUND;
+ }
out:
return EFI_EXIT(ret);
}