]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Nt32Pkg/CpuRuntimeDxe/Cpu.c
SecurityPkg: Add TPM PTP support in TCG2 SMM.
[mirror_edk2.git] / Nt32Pkg / CpuRuntimeDxe / Cpu.c
index bcce412a337d82dc2a5b7775be7b9878669f84dd..9e7dfbb29fbaabd3d06689676daf8815608e6ac7 100644 (file)
@@ -1,6 +1,6 @@
 /**@file\r
 \r
-Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -327,7 +327,7 @@ Returns:
     return EFI_INVALID_PARAMETER;\r
   }\r
   \r
-  gWinNt->QueryPerformanceCounter (TimerValue);\r
+  gWinNt->QueryPerformanceCounter ((LARGE_INTEGER *)TimerValue);\r
   \r
   if (TimerPeriod != NULL) {\r
     *TimerPeriod = mTimerPeriod;\r
@@ -402,7 +402,7 @@ LogSmbiosData (
   EFI_STATUS         Status;\r
   EFI_SMBIOS_HANDLE  SmbiosHandle;\r
   \r
-  SmbiosHandle = 0;\r
+  SmbiosHandle = SMBIOS_HANDLE_PI_RESERVED;\r
   Status = Smbios->Add (\r
                      Smbios,\r
                      NULL,\r
@@ -467,7 +467,7 @@ Returns:
   ASSERT (CpuVerStrLen <= SMBIOS_STRING_MAX_LENGTH);\r
 \r
 \r
-  TotalSize = sizeof(SMBIOS_TABLE_TYPE4) + CpuVerStrLen + 1 + 1;\r
+  TotalSize = (UINT32)(sizeof(SMBIOS_TABLE_TYPE4) + CpuVerStrLen + 1 + 1);\r
   SmbiosRecord = AllocatePool(TotalSize);\r
   ZeroMem(SmbiosRecord, TotalSize);\r
 \r
@@ -532,7 +532,7 @@ Returns:
   //\r
   // Retrieve the frequency of the performance counter in Hz.\r
   //  \r
-  gWinNt->QueryPerformanceFrequency (&Frequency);\r
+  gWinNt->QueryPerformanceFrequency ((LARGE_INTEGER *)&Frequency);\r
   \r
   //\r
   // Convert frequency in Hz to a clock period in femtoseconds.\r