9
0
Fork 0

efi: add prototype and definition for setting timer

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2017-03-03 13:33:58 +01:00 committed by Sascha Hauer
parent d633b8a7c8
commit 566f5634c5
1 changed files with 7 additions and 1 deletions

View File

@ -171,6 +171,12 @@ struct efi_open_protocol_information_entry {
u32 open_count;
};
typedef enum {
EFI_TIMER_CANCEL = 0,
EFI_TIMER_PERIODIC = 1,
EFI_TIMER_RELATIVE = 2
} efi_timer_delay_t;
/*
* EFI Boot Services table
*/
@ -199,7 +205,7 @@ typedef struct {
efi_status_t(EFIAPI *create_event)(u32 type , unsigned long tpl,
void (*fn) (void *event, void *ctx),
void *ctx, void **event);
void *set_timer;
efi_status_t(EFIAPI *set_timer)(void *event, efi_timer_delay_t type, uint64_t time);
efi_status_t(EFIAPI *wait_for_event)(unsigned long number_of_events, void *event,
unsigned long *index);
void *signal_event;