]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscOnboardDeviceData.c
MdeModulePkg/CapsuleApp: Center bitmap at bottom of screen
[mirror_edk2.git] / Vlv2TbltDevicePkg / SmBiosMiscDxe / MiscOnboardDeviceData.c
1 /** @file
2
3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4
5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
7 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
14
15 Module Name:
16
17 MiscOnboardDeviceData.c
18
19 Abstract:
20
21 Static data of Onboard device information .
22 The onboard device information is Misc. subclass type 8 and SMBIOS type 10.
23
24
25 **/
26
27
28 #include "CommonHeader.h"
29
30 #include "MiscSubclassDriver.h"
31
32 //
33 // Static (possibly build generated) Bios Vendor data.
34 //
35 MISC_SMBIOS_TABLE_DATA(EFI_MISC_ONBOARD_DEVICE_DATA, MiscOnboardDeviceVideo) = {
36 STRING_TOKEN(STR_MISC_ONBOARD_DEVICE_VIDEO), // OnBoardDeviceDescription
37 { // OnBoardDeviceStatus
38 EfiOnBoardDeviceTypeVideo, // DeviceType
39 1, // DeviceEnabled
40 0 // Reserved
41 },
42 0 // OnBoardDevicePath
43 };
44 MISC_SMBIOS_TABLE_DATA(EFI_MISC_ONBOARD_DEVICE_DATA, MiscOnboardDeviceAudio) = {
45 STRING_TOKEN(STR_MISC_ONBOARD_DEVICE_AUDIO), // OnBoardDeviceDescription
46 { // OnBoardDeviceStatus
47 EfiOnBoardDeviceTypeSound, // DeviceType
48 1, // DeviceEnabled
49 0 // Reserved
50 },
51 0 // OnBoardDevicePath
52 };
53