diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-12-04 18:03:02 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-16 23:07:36 +0100 |
commit | 678e03a00cafc9009f05cbcc3192235f2b8f9a33 (patch) | |
tree | 3005ef4f60bd187ada8789a75f527ac05fe9eced /include/efi_loader.h | |
parent | 56d92888582fe6fba9ba9968ac524f86b4e06389 (diff) | |
download | u-boot-678e03a00cafc9009f05cbcc3192235f2b8f9a33.tar.gz |
efi_loader: new function efi_delete_handle()
Provide a function to remove a handle from the object list
after removing all protocols.
To avoid forward declarations other functions have to move up
in the coding.
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 78237f14ae..6185055e78 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -190,6 +190,8 @@ void efi_set_bootdev(const char *dev, const char *devnr, const char *path); void efi_add_handle(struct efi_object *obj); /* Create handle */ efi_status_t efi_create_handle(void **handle); +/* Delete handle */ +void efi_delete_handle(struct efi_object *obj); /* Call this to validate a handle and find the EFI object for it */ struct efi_object *efi_search_obj(const void *handle); /* Find a protocol on a handle */ |