summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-03-03 15:29:00 +0100
committerAlexander Graf <agraf@suse.de>2018-04-04 11:00:06 +0200
commit14ad49d100a0ba4abafedf8ca6459b699c9d0fa1 (patch)
tree73689f4da8a111f68b7a84e67520ab5439ed42cb
parent22c793e6a26505fdf80cb5b099142dd6f8f0fff9 (diff)
downloadu-boot-14ad49d100a0ba4abafedf8ca6459b699c9d0fa1.tar.gz
efi_loader: efi_get_time_init should return status code
All EFI initialization functions should return a status code. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r--include/efi_loader.h2
-rw-r--r--lib/efi_loader/efi_runtime.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h
index 3d369436a1..b6335182ed 100644
--- a/include/efi_loader.h
+++ b/include/efi_loader.h
@@ -365,7 +365,7 @@ efi_status_t efi_reset_system_init(void);
efi_status_t __efi_runtime EFIAPI efi_get_time(
struct efi_time *time,
struct efi_time_cap *capabilities);
-void efi_get_time_init(void);
+efi_status_t efi_get_time_init(void);
#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
/*
diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c
index 85f85711dd..c59d161c8f 100644
--- a/lib/efi_loader/efi_runtime.c
+++ b/lib/efi_loader/efi_runtime.c
@@ -147,8 +147,9 @@ efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
return EFI_DEVICE_ERROR;
}
-void __weak efi_get_time_init(void)
+efi_status_t __weak efi_get_time_init(void)
{
+ return EFI_SUCCESS;
}
struct efi_runtime_detach_list_struct {