diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:16:15 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:16:15 +0000 |
commit | 64a1be29a5d22a92b1830144fedfdf8884a2b20d (patch) | |
tree | 27f8b13b5d4fb5359c31c7c1ff60a9563cd8361d /0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch | |
parent | 453c495bceb89952108be7452da3d072d3336eab (diff) |
automatic import of gnu-efiopeneuler24.03_LTS
Diffstat (limited to '0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch')
-rw-r--r-- | 0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch b/0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch new file mode 100644 index 0000000..48f8b9a --- /dev/null +++ b/0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch @@ -0,0 +1,28 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: leo <leo.sartre@geebol.fr> +Date: Tue, 14 May 2019 07:44:28 +0200 +Subject: [PATCH] efiapi.h: fix EventGroup parameter of EFI_CREATE_EVENT_EX + prototype + +From UEFI specifications, this parameter is a pointer, see +https://uefi.org/sites/default/files/resources/UEFI_Spec_2_8_final.pdf +page 148 for reference. + +Signed-off-by: leo <leo.sartre@geebol.fr> +--- + inc/efiapi.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/inc/efiapi.h b/inc/efiapi.h +index e7d2abd79de..bdf5de26a3f 100644 +--- a/inc/efiapi.h ++++ b/inc/efiapi.h +@@ -576,7 +576,7 @@ EFI_STATUS + IN EFI_TPL NotifyTpl, + IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL, + IN const VOID *NotifyContext OPTIONAL, +- IN const EFI_GUID EventGroup OPTIONAL, ++ IN const EFI_GUID *EventGroup OPTIONAL, + OUT EFI_EVENT *Event + ); + |