UefiPayloadPkg: Replace MEMROY_ENTRY by MEMORY_ENTRY

Fixes simple typo, no behavioral change.

Cc: Maurice Ma <maurice.ma@intel.com>
Cc: Guo Dong <guo.dong@intel.com>
Cc: Benjamin You <benjamin.you@intel.com>
Signed-off-by: Moritz Fischer <moritzf@google.com>
Reviewed-by: Guo Dong <guo.dong@intel.com>
This commit is contained in:
Guo Dong
2021-10-18 20:34:38 -07:00
committed by mergify[bot]
parent 36b561623a
commit 91a978ce7e
5 changed files with 8 additions and 8 deletions

View File

@@ -23,14 +23,14 @@ typedef struct {
UINT8 Type;
UINT8 Flag;
UINT8 Reserved[6];
} MEMROY_MAP_ENTRY;
} MEMORY_MAP_ENTRY;
typedef struct {
UINT8 Revision;
UINT8 Reserved0[3];
UINT32 Count;
MEMROY_MAP_ENTRY Entry[0];
} MEMROY_MAP_INFO;
MEMORY_MAP_ENTRY Entry[0];
} MEMORY_MAP_INFO;
#pragma pack()
#endif