]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmulatorPkg/MiscSubClassPlatformDxe/MiscChassisManufacturerFunction.c
MdePkg: add missing #defines for decoding PCIe 2.1 extended capability structures
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscChassisManufacturerFunction.c
index fd1262b1907f5c3ebbdddaae36581fa8bcbbd88d..0df651e6938421def646a9c319c4747f3e15634d 100644 (file)
@@ -2,7 +2,7 @@
   Chassis manufacturer information boot time changes.\r
   SMBIOS type 3.\r
 \r
-  Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 2011, 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
@@ -19,7 +19,7 @@
   This function makes boot time changes to the contents of the\r
   MiscChassisManufacturer (Type 3).\r
 \r
-  @param  RecordData                 Pointer to copy of RecordData from the Data Table.  \r
+  @param  RecordData                 Pointer to copy of RecordData from the Data Table.\r
 \r
   @retval EFI_SUCCESS                All parameters were valid.\r
   @retval EFI_UNSUPPORTED            Unexpected RecordType value.\r
@@ -91,24 +91,24 @@ MISC_SMBIOS_TABLE_FUNCTION(MiscChassisManufacturer)
   //\r
   // Make handle chosen by smbios protocol.add automatically.\r
   //\r
-  SmbiosRecord->Hdr.Handle = 0;  \r
+  SmbiosRecord->Hdr.Handle = 0;\r
   //\r
   // Manu will be the 1st optional string following the formatted structure.\r
-  // \r
-  SmbiosRecord->Manufacturer = 1;  \r
+  //\r
+  SmbiosRecord->Manufacturer = 1;\r
   SmbiosRecord->Type = (UINT8)ForType3InputData->ChassisType.ChassisType;\r
   //\r
   // Version will be the 2nd optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->Version = 2;  \r
+  SmbiosRecord->Version = 2;\r
   //\r
   // SerialNumber will be the 3rd optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->SerialNumber = 3;  \r
+  SmbiosRecord->SerialNumber = 3;\r
   //\r
   // AssertTag will be the 4th optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->AssetTag = 4;  \r
+  SmbiosRecord->AssetTag = 4;\r
   SmbiosRecord->BootupState = (UINT8)ForType3InputData->ChassisBootupState;\r
   SmbiosRecord->PowerSupplyState = (UINT8)ForType3InputData->ChassisPowerSupplyState;\r
   SmbiosRecord->ThermalState = (UINT8)ForType3InputData->ChassisThermalState;\r
@@ -124,13 +124,7 @@ MISC_SMBIOS_TABLE_FUNCTION(MiscChassisManufacturer)
   //\r
   // Now we have got the full smbios record, call smbios protocol to add this record.\r
   //\r
-  SmbiosHandle = 0;\r
-  Status = Smbios-> Add(\r
-                      Smbios, \r
-                      NULL,\r
-                      &SmbiosHandle, \r
-                      (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord\r
-                      );\r
+  Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);\r
 \r
   FreePool(SmbiosRecord);\r
   return Status;\r