diff mbox series

drivers: efistub: fix typo in docs

Message ID 20240208163038.111870-1-vincenzo.mezzela@gmail.com
State New
Headers show
Series drivers: efistub: fix typo in docs | expand

Commit Message

Vincenzo Mezzela Feb. 8, 2024, 4:30 p.m. UTC
This patch resolves a spelling error in the documentation.

It is submitted as part of my application to the "Linux Kernel Bug
Fixing Spring Unpaid 2024" mentorship program of the Linux Kernel
Foundation.

Signed-off-by: Vincenzo Mezzela <vincenzo.mezzela@gmail.com>
---
 drivers/firmware/efi/libstub/efistub.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/firmware/efi/libstub/efistub.h b/drivers/firmware/efi/libstub/efistub.h
index 212687c30d79..8369f3adcb37 100644
--- a/drivers/firmware/efi/libstub/efistub.h
+++ b/drivers/firmware/efi/libstub/efistub.h
@@ -221,7 +221,7 @@  typedef void (__efiapi *efi_event_notify_t)(efi_event_t, void *);
  *
  * @events:	array of UEFI events
  * @ids:	index where to put the event in the array
- * @event:	event to add to the aray
+ * @event:	event to add to the array
  *
  * boottime->wait_for_event() takes an array of events as input.
  * Provide a helper to set it up correctly for mixed mode.