diff --git a/MdeModulePkg/Core/Dxe/DxeMain.h b/MdeModulePkg/Core/Dxe/DxeMain.h index 2004e389e5..3d999f906f 100644 --- a/MdeModulePkg/Core/Dxe/DxeMain.h +++ b/MdeModulePkg/Core/Dxe/DxeMain.h @@ -88,7 +88,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "Imem.h" #include "Image.h" #include "Exec.h" -#include "Hand.h" +#include "Handle.h" // // attributes for reserved memory before it is promoted to system memory diff --git a/MdeModulePkg/Core/Dxe/DxeMain.inf b/MdeModulePkg/Core/Dxe/DxeMain.inf index 8a99582d30..c3e0fd6fe2 100644 --- a/MdeModulePkg/Core/Dxe/DxeMain.inf +++ b/MdeModulePkg/Core/Dxe/DxeMain.inf @@ -32,7 +32,7 @@ Library.h Imem.h Image.h - Hand.h + Handle.h Gcd.h FwVolDriver.h FwVolBlock.h diff --git a/MdeModulePkg/Core/Dxe/Hand.h b/MdeModulePkg/Core/Dxe/Handle.h similarity index 96% rename from MdeModulePkg/Core/Dxe/Hand.h rename to MdeModulePkg/Core/Dxe/Handle.h index e517b83dbc..b73bad99e1 100644 --- a/MdeModulePkg/Core/Dxe/Hand.h +++ b/MdeModulePkg/Core/Dxe/Handle.h @@ -86,9 +86,9 @@ typedef struct { #define PROTOCOL_NOTIFY_SIGNATURE EFI_SIGNATURE_32('p','r','t','n') typedef struct { UINTN Signature; - LIST_ENTRY Link; // All notifications for this protocol PROTOCOL_ENTRY *Protocol; - EFI_EVENT Event; // Event to notify // + LIST_ENTRY Link; // All notifications for this protocol + EFI_EVENT Event; // Event to notify LIST_ENTRY *Position; // Last position notified } PROTOCOL_NOTIFY;