mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +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
|
@ -825,7 +825,7 @@ out:
|
|||
* efi_cin_set_state() - set toggle key state
|
||||
*
|
||||
* @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
|
||||
* @key_toggle_state: key toggle state
|
||||
* @key_toggle_state: pointer to key toggle state
|
||||
* Return: status code
|
||||
*
|
||||
* This function implements the SetState service of the
|
||||
|
@ -836,9 +836,9 @@ out:
|
|||
*/
|
||||
static efi_status_t EFIAPI efi_cin_set_state(
|
||||
struct efi_simple_text_input_ex_protocol *this,
|
||||
u8 key_toggle_state)
|
||||
u8 *key_toggle_state)
|
||||
{
|
||||
EFI_ENTRY("%p, %u", this, key_toggle_state);
|
||||
EFI_ENTRY("%p, %p", this, key_toggle_state);
|
||||
/*
|
||||
* U-Boot supports multiple console input sources like serial and
|
||||
* net console for which a key toggle state cannot be set at all.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue