diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-03 15:29:00 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:00:06 +0200 |
commit | 14ad49d100a0ba4abafedf8ca6459b699c9d0fa1 (patch) | |
tree | 73689f4da8a111f68b7a84e67520ab5439ed42cb /include/efi_loader.h | |
parent | 22c793e6a26505fdf80cb5b099142dd6f8f0fff9 (diff) | |
download | u-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>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 1 insertions, 1 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 /* |