diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-03-12 01:00:30 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-03-12 01:00:30 +0000 |
commit | 4d83284aeecb8c2e6e5fe16bfd2cc75346709625 (patch) | |
tree | aa525ad963d0c479f22bc3e9bae62979cb9aa14e | |
parent | 5ea2c2d334af53bf14da6eb3ce2dbc5db1e3419c (diff) | |
download | edk2-4d83284aeecb8c2e6e5fe16bfd2cc75346709625.zip edk2-4d83284aeecb8c2e6e5fe16bfd2cc75346709625.tar.gz edk2-4d83284aeecb8c2e6e5fe16bfd2cc75346709625.tar.bz2 |
ArmPlatformPkg/LcdGraphicsOutputDxe: The structure signature is a 32 bit value
The signature was declared as UINTN.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14190 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h index 1e66a42..dfbf2ed 100644 --- a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h +++ b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h @@ -34,7 +34,7 @@ typedef struct { } LCD_GRAPHICS_DEVICE_PATH;
typedef struct {
- UINTN Signature;
+ UINT32 Signature;
EFI_HANDLE Handle;
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION ModeInfo;
EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE Mode;
|