summaryrefslogtreecommitdiffstats
path: root/Vlv2TbltDevicePkg
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2016-07-29 11:25:38 +0800
committerdavid wei <david.wei@intel.com>2016-08-03 11:08:34 +0800
commit4884e81b5d0da1bcc05361dd4c5fc06b3722f144 (patch)
treef2fe048bc833e333ffe3072e9b244fa348c33edb /Vlv2TbltDevicePkg
parent55ef35d21eea88a0785cfec47df5059945fb0f0c (diff)
downloadedk2-4884e81b5d0da1bcc05361dd4c5fc06b3722f144.tar.gz
edk2-4884e81b5d0da1bcc05361dd4c5fc06b3722f144.tar.bz2
edk2-4884e81b5d0da1bcc05361dd4c5fc06b3722f144.zip
Vlv2TbltDevicePkg/PpmPolicy: Remove the unused variable
Fix the following error from gcc: Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c: In function ?PpmPolicyEntry?: Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c:50:29: error: variable ?MaxRatio? set but not used [-Werror=unused-but-set-variable] Cc: David Wei <david.wei@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: David Wei <david.wei@intel.com>
Diffstat (limited to 'Vlv2TbltDevicePkg')
-rw-r--r--Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c b/Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c
index fb4e7fc87b..ec0c0f5c1e 100644
--- a/Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c
+++ b/Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c
@@ -46,7 +46,6 @@ PpmPolicyEntry(
EFI_HANDLE Handle;
EFI_STATUS Status;
UINTN CpuCount;
- UINT64 MaxRatio;
UINT8 CPUMobileFeature;
PCH_STEPPING Stepping;
@@ -77,8 +76,6 @@ PpmPolicyEntry(
// Store the CPUID for use by SETUP items.
//
AsmCpuid (EFI_CPUID_VERSION_INFO, &Cpuid01.RegEax, &Cpuid01.RegEbx, &Cpuid01.RegEcx, &Cpuid01.RegEdx);
- MaxRatio = ((RShiftU64 (AsmReadMsr64(EFI_MSR_IA32_PLATFORM_ID), 8)) & 0x1F);
-
mDxePlatformPpmPolicy.Revision = PPM_PLATFORM_POLICY_PROTOCOL_REVISION_4;