]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/MiscSubClassPlatformDxe/MiscSystemSlotDesignationData.c
UefiCpuPkg: Remove double \r
[mirror_edk2.git] / Nt32Pkg / MiscSubClassPlatformDxe / MiscSystemSlotDesignationData.c
1 /**@file
2
3 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 Module Name:
7
8 MiscSystemSlotDesignationData.c
9
10 Abstract:
11
12 This driver parses the mMiscSubclassDataTable structure and reports
13 any generated data to the DataHub.
14
15 **/
16
17 #include "MiscSubclassDriver.h"
18
19 //
20 // Static (possibly build generated) Bios Vendor data.
21 //
22 MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA, MiscSystemSlotDesignation) = {
23 STRING_TOKEN(STR_MISC_SYSTEM_SLOT_DESIGNATION), // SlotDesignation
24 EfiSlotTypeOther, // SlotType
25 EfiSlotDataBusWidthOther, // SlotDataBusWidth
26 EfiSlotUsageOther, // SlotUsage
27 EfiSlotLengthOther, // SlotLength
28 0, // SlotId
29 { // SlotCharacteristics
30 0, // CharacteristicsUnknown :1;
31 0, // Provides50Volts :1;
32 0, // Provides33Volts :1;
33 0, // SharedSlot :1;
34 0, // PcCard16Supported :1;
35 0, // CardBusSupported :1;
36 0, // ZoomVideoSupported :1;
37 0, // ModemRingResumeSupported:1;
38 0, // PmeSignalSupported :1;
39 0, // HotPlugDevicesSupported :1;
40 0, // SmbusSignalSupported :1;
41 0 // Reserved :21;
42 },
43 0 // SlotDevicePath
44 };
45
46 /* eof - MiscSystemSlotsData.c */