projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97cf208
)
efi_loader: EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL definition
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Sat, 15 Jun 2019 12:47:25 +0000
(14:47 +0200)
committer
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Thu, 20 Jun 2019 22:26:16 +0000
(22:26 +0000)
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset() is a function and not a void *
pointer.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
include/efi_api.h
patch
|
blob
|
history
diff --git
a/include/efi_api.h
b/include/efi_api.h
index d7d95edd4dfcb0eddded55f269cb65c8b355f82f..4de5d208f5999734834e9a0fa60ffbf9d84d8777 100644
(file)
--- 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);