diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-06-16 01:42:31 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-06-16 11:01:07 +0200 |
commit | 8c0a839c2bccb756454e35e8977e44fcf2bd417e (patch) | |
tree | d27f2c2066c29d9b18a5ba310717b8d93c389959 /drivers/firmware/efi/libstub/efistub.h | |
parent | efi/libstub: Fix path separator regression (diff) | |
download | linux-8c0a839c2bccb756454e35e8977e44fcf2bd417e.tar.xz linux-8c0a839c2bccb756454e35e8977e44fcf2bd417e.zip |
efi/libstub: Descriptions for stub helper functions
Provide missing descriptions for EFI stub helper functions.
Adjust formatting of existing descriptions to kernel style.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Link: https://lore.kernel.org/r/20200615234231.21059-1-xypron.glpk@gmx.de
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/libstub/efistub.h')
-rw-r--r-- | drivers/firmware/efi/libstub/efistub.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/firmware/efi/libstub/efistub.h b/drivers/firmware/efi/libstub/efistub.h index bcd8c0a785f0..ac756f1fdb1a 100644 --- a/drivers/firmware/efi/libstub/efistub.h +++ b/drivers/firmware/efi/libstub/efistub.h @@ -157,8 +157,14 @@ typedef void (__efiapi *efi_event_notify_t)(efi_event_t, void *); #define EFI_EVT_NOTIFY_WAIT 0x00000100U #define EFI_EVT_NOTIFY_SIGNAL 0x00000200U -/* - * boottime->wait_for_event takes an array of events as input. +/** + * efi_set_event_at() - add event to events array + * + * @events: array of UEFI events + * @ids: index where to put the event in the array + * @event: event to add to the aray + * + * boottime->wait_for_event() takes an array of events as input. * Provide a helper to set it up correctly for mixed mode. */ static inline |