diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-13 18:42:40 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-14 19:18:40 +0200 |
commit | c5b63bec2f885e2b0a475aca33c7696c59ae6965 (patch) | |
tree | d15fd8c8c6a5a56524a85d248948a0d309cbf518 /lib | |
parent | e771b4b39e8c52f7093ec1126a59daf072ac773b (diff) | |
download | u-boot-c5b63bec2f885e2b0a475aca33c7696c59ae6965.tar.gz |
efi_loader: GetTime() must return EFI_UNSUPPORTED
If the GetTime() runtime service is not supported, EFI_UNSUPPORTED has to
be returned.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_runtime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c index 0c57d0abd7..40fdc0ea92 100644 --- a/lib/efi_loader/efi_runtime.c +++ b/lib/efi_loader/efi_runtime.c @@ -366,8 +366,7 @@ efi_status_t __weak __efi_runtime EFIAPI efi_get_time( struct efi_time *time, struct efi_time_cap *capabilities) { - /* Nothing we can do */ - return EFI_DEVICE_ERROR; + return EFI_UNSUPPORTED; } /** |