summaryrefslogtreecommitdiffstats
path: root/IntelSiliconPkg
diff options
context:
space:
mode:
authorGiri P Mudusuru <giri.p.mudusuru@intel.com>2016-10-11 21:58:46 -0700
committerGiri P Mudusuru <giri.p.mudusuru@intel.com>2016-10-12 03:26:50 -0700
commitc3aa61b571b89223bd2b47b8769c169e2ced91f6 (patch)
treeb5b356625544ccfa33e74c187e6a11d291728128 /IntelSiliconPkg
parente294f58e69983624b8b1eef2b2e28983fa42421d (diff)
downloadedk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.tar.gz
edk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.tar.bz2
edk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.zip
IntelSiliconPkg: Fixing syntax bug in IGD_OPREGION_HEADER
Added missing ; for DVER in IGD_OPREGION_HEADER Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Giri P Mudusuru <giri.p.mudusuru@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Diffstat (limited to 'IntelSiliconPkg')
-rw-r--r--IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h b/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
index 4d5637c6ed..c66a45261a 100644
--- a/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
+++ b/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
@@ -50,7 +50,7 @@ typedef struct {
UINT32 MBOX; ///< Offset 0x58 Supported Mailboxes
UINT32 DMOD; ///< Offset 0x5C Driver Model
UINT32 PCON; ///< Offset 0x60 Platform Configuration
- CHAR16 DVER[0x10] ///< Offset 0x64 GOP Version
+ CHAR16 DVER[0x10]; ///< Offset 0x64 GOP Version
UINT8 RM01[0x7C]; ///< Offset 0x84 Reserved Must be zero
} IGD_OPREGION_HEADER;