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