diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-01-19 22:24:51 +0300 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-01-23 01:09:14 +0300 |
commit | 9bc9664d5ee16155b42baf92282ba7198ef4e873 (patch) | |
tree | 4f2ded29eb08fdab8689f2a4dfe79f8fce462f35 /include/efi_loader.h | |
parent | 65436f91c5ba76f176a1f1d20801837c9746bb82 (diff) | |
download | u-boot-9bc9664d5ee16155b42baf92282ba7198ef4e873.tar.xz |
efi_loader: add check_tpl parameter to efi_signal_event
In ExitBootServices we need to signal events irrespective of the current
TPL level. A new parameter check_tpl is added to efi_signal_event().
Function efi_console_timer_notify() gets some comments.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 2db4e9c09b..563c7ba3cf 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -240,7 +240,7 @@ efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl, efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type, uint64_t trigger_time); /* Call this to signal an event */ -void efi_signal_event(struct efi_event *event); +void efi_signal_event(struct efi_event *event, bool check_tpl); /* open file system: */ struct efi_simple_file_system_protocol *efi_simple_file_system( |