]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmulatorPkg/MiscSubClassPlatformDxe/MiscBaseBoardManufacturerFunction.c
BaseTools: Add new RegEx pattern to GlobalData
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscBaseBoardManufacturerFunction.c
index 04f5a1edc51da92b288b787404791607f265a404..562f716fd40b27a47e194c4106cb61c6c3061032 100644 (file)
@@ -2,7 +2,7 @@
   BaseBoard manufacturer information boot time changes.\r
   SMBIOS type 2.\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
@@ -18,7 +18,7 @@
   This function makes boot time changes to the contents of the\r
   MiscBaseBoardManufacturer (Type 2).\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
@@ -109,37 +109,37 @@ MISC_SMBIOS_TABLE_FUNCTION(MiscBaseBoardManufacturer)
   //\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
   //\r
   // ProductName will be the 2st optional string following the formatted structure.\r
-  // \r
-  SmbiosRecord->ProductName  = 2;  \r
+  //\r
+  SmbiosRecord->ProductName  = 2;\r
   //\r
   // Version will be the 3rd optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->Version = 3;  \r
+  SmbiosRecord->Version = 3;\r
   //\r
   // SerialNumber will be the 4th optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->SerialNumber = 4;  \r
+  SmbiosRecord->SerialNumber = 4;\r
   //\r
   // AssertTag will be the 5th optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->AssetTag = 5;  \r
+  SmbiosRecord->AssetTag = 5;\r
 \r
   //\r
   // LocationInChassis will be the 6th optional string following the formatted structure.\r
   //\r
-  SmbiosRecord->LocationInChassis = 6;  \r
+  SmbiosRecord->LocationInChassis = 6;\r
   SmbiosRecord->FeatureFlag = (*(BASE_BOARD_FEATURE_FLAGS*)&(ForType2InputData->BaseBoardFeatureFlags));\r
   SmbiosRecord->ChassisHandle  = 0;\r
   SmbiosRecord->BoardType      = (UINT8)ForType2InputData->BaseBoardType;\r
   SmbiosRecord->NumberOfContainedObjectHandles = 0;\r
-  \r
+\r
   OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);\r
   //\r
   // Since we fill NumberOfContainedObjectHandles = 0 for simple, just after this filed to fill string\r
@@ -154,13 +154,7 @@ MISC_SMBIOS_TABLE_FUNCTION(MiscBaseBoardManufacturer)
   //\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