The keydata passed to efi_register_keystroke_notify is passed by reference, not by value, according to spec. This introduced no functional change as we don't yet use the prototype. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- include/efi/efi-stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/efi/efi-stdio.h b/include/efi/efi-stdio.h index 0b3a184a78a8..55ceb47d1b79 100644 --- a/include/efi/efi-stdio.h +++ b/include/efi/efi-stdio.h @@ -42,7 +42,7 @@ typedef efi_status_t (EFIAPI *efi_key_notify_function)( typedef efi_status_t (EFIAPI *efi_register_keystroke_notify)( struct efi_simple_text_input_ex_protocol *this, - struct efi_key_data keydata, + struct efi_key_data *keydata, efi_key_notify_function key_notification_function, void **notify_handle ); -- 2.39.2