From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5286A1A1E30 for ; Tue, 11 Oct 2016 22:06:48 -0700 (PDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP; 11 Oct 2016 22:06:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,332,1473145200"; d="scan'208";a="1069286293" Received: from gpmudusu-mobl5.amr.corp.intel.com ([10.252.65.187]) by fmsmga002.fm.intel.com with ESMTP; 11 Oct 2016 22:06:46 -0700 From: Giri P Mudusuru To: edk2-devel@lists.01.org Cc: Jiewen Yao Date: Tue, 11 Oct 2016 22:06:36 -0700 Message-Id: <2503a66472539eb7d50b87fa5bb88ef325cb72d7.1476248642.git.giri.p.mudusuru@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 Subject: [PATCH] IntelSiliconPkg: Fixing syntax bug in IGD_OPREGION_HEADER X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Oct 2016 05:06:48 -0000 Added missing ; for DVER in IGD_OPREGION_HEADER Cc: Jiewen Yao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Giri P Mudusuru --- IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.9.0.windows.1