]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/MiscSubClassPlatformDxe/MiscChassisManufacturerData.c
BaseTools: Library hashing fix and optimization for --hash feature
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscChassisManufacturerData.c
CommitLineData
949f388f 1/*++\r
2\r
3Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
e3ba31da 4SPDX-License-Identifier: BSD-2-Clause-Patent\r
949f388f 5\r
6Module Name:\r
7\r
8 MiscChassisManufacturerData.c\r
d18d8a1d 9\r
10Abstract:\r
949f388f 11\r
12 This driver parses the mMiscSubclassDataTable structure and reports\r
13 any generated data to the DataHub.\r
14\r
15**/\r
16\r
17#include "MiscSubClassDriver.h"\r
18\r
19//\r
20// Static (possibly build generated) Chassis Manufacturer data.\r
21//\r
22MISC_SMBIOS_TABLE_DATA(EFI_MISC_CHASSIS_MANUFACTURER_DATA, MiscChassisManufacturer) = {\r
23 STRING_TOKEN(STR_MISC_CHASSIS_MANUFACTURER), // ChassisManufactrurer\r
24 STRING_TOKEN(STR_MISC_CHASSIS_VERSION), // ChassisVersion\r
25 STRING_TOKEN(STR_MISC_CHASSIS_SERIAL_NUMBER), // ChassisSerialNumber\r
26 STRING_TOKEN(STR_MISC_CHASSIS_ASSET_TAG), // ChassisAssetTag\r
27 { // ChassisTypeStatus\r
28 EfiMiscChassisTypeOther, // ChassisType\r
29 0, // ChassisLockPresent\r
30 0 // Reserved\r
31 },\r
32 EfiChassisStateOther, // ChassisBootupState\r
33 EfiChassisStateOther, // ChassisPowerSupplyState\r
34 EfiChassisStateOther, // ChassisThermalState\r
35 EfiChassisSecurityStatusOther, // ChassisSecurityState\r
36 0 // ChassisOemDefined\r
37};\r
38\r
39/* eof - MiscChassisManufacaturerData.c */\r