]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Nt32Pkg/MiscSubClassPlatformDxe/MiscChassisManufacturerData.c
NetworkPkg: Clean up source files
[mirror_edk2.git] / Nt32Pkg / MiscSubClassPlatformDxe / MiscChassisManufacturerData.c
... / ...
CommitLineData
1/**@file\r
2\r
3Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
4(C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>\r
5This program and the accompanying materials \r
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
22**/\r
23\r
24#include "MiscSubclassDriver.h"\r
25\r
26//\r
27// Static (possibly build generated) Chassis Manufacturer data.\r
28//\r
29MISC_SMBIOS_TABLE_DATA(EFI_MISC_CHASSIS_MANUFACTURER_DATA, MiscChassisManufacturer) = {\r
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
43 0, // ChassisOemDefined\r
44 1, // Height\r
45 1 // NumberofPowerCords\r
46};\r
47\r
48/* eof - MiscChassisManufacaturerData.c */\r