diff options
author | Giri P Mudusuru <giri.p.mudusuru@intel.com> | 2016-10-11 21:58:46 -0700 |
---|---|---|
committer | Giri P Mudusuru <giri.p.mudusuru@intel.com> | 2016-10-12 03:26:50 -0700 |
commit | c3aa61b571b89223bd2b47b8769c169e2ced91f6 (patch) | |
tree | b5b356625544ccfa33e74c187e6a11d291728128 /IntelSiliconPkg/Include | |
parent | e294f58e69983624b8b1eef2b2e28983fa42421d (diff) | |
download | edk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.zip edk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.tar.gz edk2-c3aa61b571b89223bd2b47b8769c169e2ced91f6.tar.bz2 |
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/Include')
-rw-r--r-- | IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h b/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h index 4d5637c..c66a452 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;
|