mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
efi_loader: typedef efi_string_t text output protocol
We do not want to use typedefs in U-Boot. Do not use efi_string_t in the EFI_TEXT_OUTPUT_PROTOCOL. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
85fc2ad4d1
commit
7913c7dc57
2 changed files with 5 additions and 5 deletions
|
@ -701,10 +701,10 @@ struct efi_simple_text_output_protocol {
|
|||
char extended_verification);
|
||||
efi_status_t (EFIAPI *output_string)(
|
||||
struct efi_simple_text_output_protocol *this,
|
||||
const efi_string_t str);
|
||||
const u16 *str);
|
||||
efi_status_t (EFIAPI *test_string)(
|
||||
struct efi_simple_text_output_protocol *this,
|
||||
const efi_string_t str);
|
||||
const u16 *str);
|
||||
efi_status_t(EFIAPI *query_mode)(
|
||||
struct efi_simple_text_output_protocol *this,
|
||||
unsigned long mode_number, unsigned long *columns,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue