vendorcode/intel/edk2: Fix EFI_PEI_GRAPHICS_INFO_HOB structure

Change the FrameBufferSize field from UINT64 to UINT32 to match the
Platform Initialization 2.4 specification.

BRANCH=none
BUG=None
TEST=Build and run on cyan

Change-Id: I28dc0608675ed5840863ecd15bd2f57e6b2f4c1d
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: http://review.coreboot.org/10834
Tested-by: build bot (Jenkins)
Reviewed-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Lee Leahy 2015-07-07 15:17:05 -07:00 committed by Leroy P Leahy
parent 45980bd9f7
commit d05a6c80c7
1 changed files with 4 additions and 4 deletions

View File

@ -78,10 +78,10 @@ static inline void debug_dead_loop(void)
//
// Contents of the PEI_GRAPHICS_INFO_HOB
//
typedef struct {
EFI_PHYSICAL_ADDRESS FrameBufferBase;
UINT64 FrameBufferSize;
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION GraphicsMode;
typedef struct {
EFI_PHYSICAL_ADDRESS FrameBufferBase;
UINT32 FrameBufferSize;
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION GraphicsMode;
} EFI_PEI_GRAPHICS_INFO_HOB;
//