diff mbox series

[1/1] efi_loader: efi_signal_event() fix comment typos

Message ID 20201228000053.132764-1-xypron.glpk@gmx.de
State Accepted, archived
Commit 2a0f80f058a7ebc65cfdf863801d5ac26ad68d4e
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] efi_loader: efi_signal_event() fix comment typos | expand

Commit Message

Heinrich Schuchardt Dec. 28, 2020, midnight UTC
Add missing commas.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 lib/efi_loader/efi_boottime.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--
2.29.2
diff mbox series

Patch

diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c
index 4deb051c4e..9062b2dc3d 100644
--- a/lib/efi_loader/efi_boottime.c
+++ b/lib/efi_loader/efi_boottime.c
@@ -271,8 +271,8 @@  efi_status_t is_valid_tpl(efi_uintn_t tpl)
  * efi_signal_event() - signal an EFI event
  * @event:     event to signal
  *
- * This function signals an event. If the event belongs to an event group all
- * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
+ * This function signals an event. If the event belongs to an event group, all
+ * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL,
  * their notification function is queued.
  *
  * For the SignalEvent service see efi_signal_event_ext.