[PATCH v2 079/113] efi: stdio: fix efi_register_keystroke_notify prototype
Ahmad Fatoum
a.fatoum at pengutronix.de
Mon Mar 4 11:00:04 PST 2024
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 at pengutronix.de>
---
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
More information about the barebox
mailing list