2020-01-28 18:03:04 +00:00
|
|
|
From 238358c6df96923c4510f5e2793a9976c3afdd44 Mon Sep 17 00:00:00 2001
|
2019-10-25 16:41:50 +00:00
|
|
|
From: leo <leo.sartre@geebol.fr>
|
|
|
|
Date: Tue, 14 May 2019 07:44:28 +0200
|
2020-01-28 18:03:04 +00:00
|
|
|
Subject: [PATCH 09/46] efiapi.h: fix EventGroup parameter of
|
2020-01-21 19:22:25 +00:00
|
|
|
EFI_CREATE_EVENT_EX prototype
|
2019-10-25 16:41:50 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
);
|
|
|
|
|
2020-01-21 19:22:25 +00:00
|
|
|
--
|
|
|
|
2.24.1
|
|
|
|
|