diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-01 09:42:39 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-02 18:17:50 +0200 |
commit | e6023be41e94eb2bab4c93d343ac3deddfe12c7b (patch) | |
tree | e45b35faa53e7d2e44c3518ee282d2841e60426f /lib | |
parent | a9a25cc3e7d817048e831bfc70ceee11d761ed4f (diff) | |
download | u-boot-e6023be41e94eb2bab4c93d343ac3deddfe12c7b.tar.gz u-boot-e6023be41e94eb2bab4c93d343ac3deddfe12c7b.tar.bz2 u-boot-e6023be41e94eb2bab4c93d343ac3deddfe12c7b.zip |
efi_loader: description of efi_add_handle()
Correct the comments describing function efi_add_handle().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 6d2dc2dda3..e5c46e9f08 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -423,10 +423,12 @@ static efi_status_t EFIAPI efi_free_pool_ext(void *buffer) } /** - * efi_add_handle() - add a new object to the object list - * @obj: object to be added + * efi_add_handle() - add a new handle to the object list * - * The protocols list is initialized. The object handle is set. + * @handle: handle to be added + * + * The protocols list is initialized. The handle is added to the list of known + * UEFI objects. */ void efi_add_handle(efi_handle_t handle) { |