mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
ff401d3f81
commit
2edab5e2e6
2 changed files with 9 additions and 1 deletions
|
@ -321,7 +321,13 @@ static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
|
|||
return EFI_EXIT(r);
|
||||
}
|
||||
|
||||
static efi_status_t efi_create_handle(void **handle)
|
||||
/*
|
||||
* Create handle.
|
||||
*
|
||||
* @handle new handle
|
||||
* @return status code
|
||||
*/
|
||||
efi_status_t efi_create_handle(void **handle)
|
||||
{
|
||||
struct efi_object *obj;
|
||||
efi_status_t r;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue