From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by ml01.01.org (Postfix) with ESMTP id 046081A1E18 for ; Mon, 15 Aug 2016 01:41:22 -0700 (PDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 15 Aug 2016 01:41:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,524,1464678000"; d="scan'208";a="1041273413" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga002.fm.intel.com with ESMTP; 15 Aug 2016 01:41:21 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Feng Tian Date: Mon, 15 Aug 2016 16:41:19 +0800 Message-Id: <20160815084119.95480-1-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 Subject: [PATCH] UefiCpuPkg: MTRR_PHYSMASK.Valid should be one bit instead of 8 bits 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: Mon, 15 Aug 2016 08:41:23 -0000 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Cc: Feng Tian --- UefiCpuPkg/Include/Register/ArchitecturalMsr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UefiCpuPkg/Include/Register/ArchitecturalMsr.h b/UefiCpuPkg/Include/Register/ArchitecturalMsr.h index a4702ed..4d4ade4 100644 --- a/UefiCpuPkg/Include/Register/ArchitecturalMsr.h +++ b/UefiCpuPkg/Include/Register/ArchitecturalMsr.h @@ -2092,7 +2092,7 @@ typedef union { /// /// [Bit 11] Valid Enable range mask. /// - UINT32 V:8; + UINT32 V:1; /// /// [Bits 31:12] PhysMask. MTRR address range mask. /// -- 2.9.0.windows.1