mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
efi_loader: EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL definition
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset() is a function and not a void * pointer. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
97cf20861a
commit
21b6b540d6
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue