summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-06-21 14:12:28 -0400
committerTom Rini <trini@konsulko.com>2019-06-21 14:12:28 -0400
commitbdf97b5d393fc94666a847e9bac1c358b2c63c59 (patch)
tree9b24167a74fb925633b851cc0d457a9db9791564 /include
parent271dc9ce7f9652e2fe3794871900fef292a9777b (diff)
parent8f89a574a9f4be2ff1402b35f49fcd2e1c6518fd (diff)
Merge tag 'efi-2019-07-rc5-3' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for v2019.07-rc5 (3) This pull request provides error fixes for the graphical output protocol, the text output protocol, and the extended text input protocol. Setting the boot device for the bootefi command is now not only supported by the 'load' command but also for the file system specific commands like 'fatload'.
Diffstat (limited to 'include')
-rw-r--r--include/efi_api.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h
index d7d95edd4d..4de5d208f5 100644
--- a/include/efi_api.h
+++ b/include/efi_api.h
@@ -577,7 +577,9 @@ struct simple_text_output_mode {
#define EFI_ATTR_BG(attr) (((attr) >> 4) & 0x7)
struct efi_simple_text_output_protocol {
- void *reset;
+ efi_status_t (EFIAPI *reset)(
+ struct efi_simple_text_output_protocol *this,
+ char extended_verification);
efi_status_t (EFIAPI *output_string)(
struct efi_simple_text_output_protocol *this,
const efi_string_t str);