diff options
| author | AKASHI Takahiro <[email protected]> | 2018-11-14 16:18:07 +0900 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2018-12-02 21:59:37 +0100 |
| commit | 83582419ea3653fdf3e5e5d0434f9ff5a8217149 (patch) | |
| tree | 4fdd096b071055e0c571cfa4159fbbbf81e817bb /lib | |
| parent | 19dd90748cb60ab2cf88b3e9c52b0da4bc0ae0a5 (diff) | |
efi_loader: SetVirtualAddressMap() should return EFI_UNSUPPORTED
See UEFI specification 2.7, section 8.4.
Signed-off-by: AKASHI Takahiro <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/efi_runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c index 405f7001404..95844efdb0e 100644 --- a/lib/efi_loader/efi_runtime.c +++ b/lib/efi_loader/efi_runtime.c @@ -284,7 +284,7 @@ static const struct efi_runtime_detach_list_struct efi_runtime_detach_list[] = { }, { /* invalidate_*cache_all are gone */ .ptr = &efi_runtime_services.set_virtual_address_map, - .patchto = &efi_invalid_parameter, + .patchto = &efi_unimplemented, }, { /* RTC accessors are gone */ .ptr = &efi_runtime_services.get_time, |
