Blame SOURCES/0009-efiapi.h-fix-EventGroup-parameter-of-EFI_CREATE_EVEN.patch

92e002
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
92e002
From: leo <leo.sartre@geebol.fr>
92e002
Date: Tue, 14 May 2019 07:44:28 +0200
92e002
Subject: [PATCH] efiapi.h: fix EventGroup parameter of EFI_CREATE_EVENT_EX
92e002
 prototype
92e002
92e002
From UEFI specifications, this parameter is a pointer, see
92e002
https://uefi.org/sites/default/files/resources/UEFI_Spec_2_8_final.pdf
92e002
page 148 for reference.
92e002
92e002
Signed-off-by: leo <leo.sartre@geebol.fr>
92e002
---
92e002
 inc/efiapi.h | 2 +-
92e002
 1 file changed, 1 insertion(+), 1 deletion(-)
92e002
92e002
diff --git a/inc/efiapi.h b/inc/efiapi.h
92e002
index e7d2abd79de..bdf5de26a3f 100644
92e002
--- a/inc/efiapi.h
92e002
+++ b/inc/efiapi.h
92e002
@@ -576,7 +576,7 @@ EFI_STATUS
92e002
     IN EFI_TPL                  NotifyTpl,
92e002
     IN EFI_EVENT_NOTIFY         NotifyFunction OPTIONAL,
92e002
     IN const VOID               *NotifyContext OPTIONAL,
92e002
-    IN const EFI_GUID           EventGroup OPTIONAL,
92e002
+    IN const EFI_GUID           *EventGroup OPTIONAL,
92e002
     OUT EFI_EVENT               *Event
92e002
     );
92e002