]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/MiscSubClassPlatformDxe/MiscChassisManufacturerData.c
Nt32Pkg: Fixes to correctly set SMBIOS Type 3
[mirror_edk2.git] / Nt32Pkg / MiscSubClassPlatformDxe / MiscChassisManufacturerData.c
CommitLineData
6ae81428 1/**@file\r
8879d432 2\r
8f2a5f80 3Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
a679e8b1 4(C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>\r
8f2a5f80 5This program and the accompanying materials \r
8879d432 6are licensed and made available under the terms and conditions of the BSD License \r
7which accompanies this distribution. The full text of the license may be found at \r
8http://opensource.org/licenses/bsd-license.php \r
9 \r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13Module Name:\r
14\r
15 MiscChassisManufacturerData.c\r
16 \r
17Abstract: \r
18\r
19 This driver parses the mMiscSubclassDataTable structure and reports\r
20 any generated data to the DataHub.\r
21\r
6ae81428 22**/\r
8879d432 23\r
8879d432 24#include "MiscSubclassDriver.h"\r
25\r
26//\r
27// Static (possibly build generated) Chassis Manufacturer data.\r
28//\r
1fdd39d3 29MISC_SMBIOS_TABLE_DATA(EFI_MISC_CHASSIS_MANUFACTURER_DATA, MiscChassisManufacturer) = {\r
8879d432 30 STRING_TOKEN(STR_MISC_CHASSIS_MANUFACTURER), // ChassisManufactrurer\r
31 STRING_TOKEN(STR_MISC_CHASSIS_VERSION), // ChassisVersion\r
32 STRING_TOKEN(STR_MISC_CHASSIS_SERIAL_NUMBER), // ChassisSerialNumber\r
33 STRING_TOKEN(STR_MISC_CHASSIS_ASSET_TAG), // ChassisAssetTag\r
34 { // ChassisTypeStatus\r
35 EfiMiscChassisTypeOther, // ChassisType\r
36 0, // ChassisLockPresent\r
37 0 // Reserved\r
38 },\r
39 EfiChassisStateOther, // ChassisBootupState\r
40 EfiChassisStateOther, // ChassisPowerSupplyState\r
41 EfiChassisStateOther, // ChassisThermalState\r
42 EfiChassisSecurityStatusOther, // ChassisSecurityState\r
a679e8b1
CP
43 0, // ChassisOemDefined\r
44 1, // Height\r
45 1 // NumberofPowerCords\r
8879d432 46};\r
47\r
48/* eof - MiscChassisManufacaturerData.c */\r