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>
This commit is contained in:
Giri P Mudusuru 2016-10-11 21:58:46 -07:00
parent e294f58e69
commit c3aa61b571
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ typedef struct {
UINT32 MBOX; ///< Offset 0x58 Supported Mailboxes UINT32 MBOX; ///< Offset 0x58 Supported Mailboxes
UINT32 DMOD; ///< Offset 0x5C Driver Model UINT32 DMOD; ///< Offset 0x5C Driver Model
UINT32 PCON; ///< Offset 0x60 Platform Configuration 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 UINT8 RM01[0x7C]; ///< Offset 0x84 Reserved Must be zero
} IGD_OPREGION_HEADER; } IGD_OPREGION_HEADER;