diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-12-28 00:59:09 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-12-29 02:09:04 +0100 |
commit | 34dc4a9ec9bef5ec5291d61a18fa523260302108 (patch) | |
tree | 179b82c74f779a3846aaab751caf70eaa2962f50 /lib | |
parent | e434311dbaf1e79b09ac01dce198499e328549f8 (diff) | |
download | u-boot-34dc4a9ec9bef5ec5291d61a18fa523260302108.tar.gz |
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 32bdb81914..417215a210 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. |