]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/MiscSubClassPlatformDxe/MiscSystemSlotDesignationData.c
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscSystemSlotDesignationData.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
d18d8a1d 7\r
949f388f 8 MiscSystemSlotDesignationData.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) Bios Vendor data.\r
21//\r
22MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA, MiscSystemSlotDesignation) = {\r
23 STRING_TOKEN(STR_MISC_SYSTEM_SLOT_DESIGNATION), // SlotDesignation\r
24 EfiSlotTypeOther, // SlotType\r
25 EfiSlotDataBusWidthOther, // SlotDataBusWidth\r
26 EfiSlotUsageOther, // SlotUsage\r
27 EfiSlotLengthOther, // SlotLength\r
28 0, // SlotId\r
29 { // SlotCharacteristics\r
30 0, // CharacteristicsUnknown :1;\r
31 0, // Provides50Volts :1;\r
32 0, // Provides33Volts :1;\r
33 0, // SharedSlot :1;\r
34 0, // PcCard16Supported :1;\r
35 0, // CardBusSupported :1;\r
36 0, // ZoomVideoSupported :1;\r
37 0, // ModemRingResumeSupported:1;\r
38 0, // PmeSignalSupported :1;\r
39 0, // HotPlugDevicesSupported :1;\r
40 0, // SmbusSignalSupported :1;\r
41 0 // Reserved :21;\r
42 },\r
43 {0, 0, {0, 0}} // SlotDevicePath\r
44};\r
45\r
46/* eof - MiscSystemSlotsData.c */\r