mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
efi_selftest: rename event_notify
A function event_notify() exists. We should not use the same name for and EFI event. Rename events in unit tests. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
8f8fe1d458
commit
564e55c7f4
4 changed files with 55 additions and 46 deletions
|
@ -26,7 +26,7 @@ struct notification_context {
|
|||
};
|
||||
|
||||
static struct efi_boot_services *boottime;
|
||||
static struct efi_event *event_notify;
|
||||
static struct efi_event *efi_st_event_notify;
|
||||
struct notification_record record;
|
||||
|
||||
struct notification_context context_before = {
|
||||
|
@ -75,7 +75,7 @@ static int setup(const efi_handle_t handle,
|
|||
ret = boottime->create_event(EVT_SIGNAL_EXIT_BOOT_SERVICES,
|
||||
TPL_CALLBACK, ebs_notify,
|
||||
&context,
|
||||
&event_notify);
|
||||
&efi_st_event_notify);
|
||||
if (ret != EFI_SUCCESS) {
|
||||
efi_st_error("could not create event\n");
|
||||
return EFI_ST_FAILURE;
|
||||
|
@ -83,7 +83,7 @@ static int setup(const efi_handle_t handle,
|
|||
ret = boottime->create_event_ex(0, TPL_CALLBACK, ebs_notify,
|
||||
&context_before,
|
||||
&guid_before_exit_boot_services,
|
||||
&event_notify);
|
||||
&efi_st_event_notify);
|
||||
if (ret != EFI_SUCCESS) {
|
||||
efi_st_error("could not create event\n");
|
||||
return EFI_ST_FAILURE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue