aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2017-10-26 19:25:50 +0200
committerAlexander Graf <agraf@suse.de>2017-12-01 13:22:56 +0100
commit085d07cd3b8c9a12d5a02c13b56ab92436c062ba (patch)
tree937a4e800054886c4caf3cbd7838fcb494248e00 /lib
parent2edab5e2e685a384261e6dd32676924feb33dfa8 (diff)
downloadu-boot-085d07cd3b8c9a12d5a02c13b56ab92436c062ba.zip
u-boot-085d07cd3b8c9a12d5a02c13b56ab92436c062ba.tar.gz
u-boot-085d07cd3b8c9a12d5a02c13b56ab92436c062ba.tar.bz2
efi_loader: argument of efi_search_obj should be const
The argument of efi_search_obj is not changed so it should be marked as const. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/efi_loader/efi_boottime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c
index 06340fd..98477df 100644
--- a/lib/efi_loader/efi_boottime.c
+++ b/lib/efi_loader/efi_boottime.c
@@ -690,7 +690,7 @@ static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
* @handle handle to find
* @return EFI object
*/
-struct efi_object *efi_search_obj(void *handle)
+struct efi_object *efi_search_obj(const void *handle)
{
struct efi_object *efiobj;