diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-10-26 19:25:49 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-01 13:22:56 +0100 |
commit | 2edab5e2e685a384261e6dd32676924feb33dfa8 (patch) | |
tree | 31978785b44d3f5a214e7d0b49b3bf19db1fa870 /include/efi_loader.h | |
parent | ff401d3f81bb8cfcec28162de07236a355aa3212 (diff) | |
download | u-boot-2edab5e2e685a384261e6dd32676924feb33dfa8.tar.gz |
efi_loader: make efi_create_handle non-static
Export function efi_create_handle.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 5fe17b0c09..f42dceaf51 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -192,6 +192,8 @@ void efi_restore_gd(void); void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map); /* Call this to set the current device name */ void efi_set_bootdev(const char *dev, const char *devnr, const char *path); +/* Create handle */ +efi_status_t efi_create_handle(void **handle); /* Call this to validate a handle and find the EFI object for it */ struct efi_object *efi_search_obj(void *handle); /* Call this to create an event */ |