diff options
author | Heinrich Schuchardt | 2020-12-28 00:59:09 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2020-12-31 14:33:07 +0100 |
commit | 2a0f80f058a7ebc65cfdf863801d5ac26ad68d4e (patch) | |
tree | 1a56d31f90d114ee5853393585afde3e0a379986 /lib | |
parent | 2a68cd492e91692f33425d02e7a0dcb24e06efc9 (diff) |
efi_loader: efi_signal_event() fix comment typos
Add missing commas.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 3ab5eb5ccc2..a08630eef9f 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -274,8 +274,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. |