mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
efi_loader: EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.SetState() correct parameter
KeyToggleState is a pointer according to UEFI spec 2.8. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
1344f7d0f6
commit
acee965263
2 changed files with 4 additions and 4 deletions
|
@ -639,7 +639,7 @@ struct efi_simple_text_input_ex_protocol {
|
|||
struct efi_event *wait_for_key_ex;
|
||||
efi_status_t (EFIAPI *set_state) (
|
||||
struct efi_simple_text_input_ex_protocol *this,
|
||||
u8 key_toggle_state);
|
||||
u8 *key_toggle_state);
|
||||
efi_status_t (EFIAPI *register_key_notify) (
|
||||
struct efi_simple_text_input_ex_protocol *this,
|
||||
struct efi_key_data *key_data,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue