summaryrefslogtreecommitdiff
path: root/Platform/BroxtonPlatformPkg/Common/Console
diff options
context:
space:
mode:
authorzwei4 <david.wei@intel.com>2017-05-11 14:14:48 +0800
committerzwei4 <david.wei@intel.com>2017-05-11 14:14:48 +0800
commit9085457c819add4d580882a047f49c22859833ac (patch)
treef9791adebee1a60954dd8513d95a6897ebe7ec94 /Platform/BroxtonPlatformPkg/Common/Console
parentb48d585a213b1dbb925ac108fe7235cd087bc5c0 (diff)
downloadedk2-platforms-9085457c819add4d580882a047f49c22859833ac.tar.xz
Fix some GCC build errors.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: zwei4 <david.wei@intel.com>
Diffstat (limited to 'Platform/BroxtonPlatformPkg/Common/Console')
-rw-r--r--Platform/BroxtonPlatformPkg/Common/Console/PlatformGopPolicyDxe/PlatformGopPolicy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Platform/BroxtonPlatformPkg/Common/Console/PlatformGopPolicyDxe/PlatformGopPolicy.c b/Platform/BroxtonPlatformPkg/Common/Console/PlatformGopPolicyDxe/PlatformGopPolicy.c
index 26dc95c77b..8f3bc44287 100644
--- a/Platform/BroxtonPlatformPkg/Common/Console/PlatformGopPolicyDxe/PlatformGopPolicy.c
+++ b/Platform/BroxtonPlatformPkg/Common/Console/PlatformGopPolicyDxe/PlatformGopPolicy.c
@@ -1,7 +1,7 @@
/** @file
Platform GOP Driver Policy.
- Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 1999 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -23,7 +23,7 @@
#include <Library/HobLib.h>
#include <Guid/PlatformInfo.h>
-EFI_BOOT_SERVICES *gBS;
+extern EFI_BOOT_SERVICES *gBS;
PLATFORM_GOP_POLICY_PROTOCOL mPlatformGOPPolicy;
@@ -82,7 +82,7 @@ GetVbtData (
SYSTEM_CONFIGURATION SystemConfiguration;
UINTN VarSize;
EFI_STATUS Status;
- EFI_GUID BmpImageGuid = { 0xE08CA6D5, 0x8D02, 0x43ae, 0xAB, 0xB1, 0x95, 0x2C, 0xC7, 0x87, 0xC9, 0x33 };
+ EFI_GUID BmpImageGuid = { 0xE08CA6D5, 0x8D02, 0x43ae, {0xAB, 0xB1, 0x95, 0x2C, 0xC7, 0x87, 0xC9, 0x33} };
UINTN FvProtocolCount;
EFI_HANDLE *FvHandles;
EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
@@ -130,7 +130,7 @@ GetVbtData (
&BmpImageGuid,
EFI_SECTION_RAW,
0,
- &Buffer,
+ (VOID **)&Buffer,
&VbtBufferSize,
&AuthenticationStatus
);