1 /** @file
2 
3 Copyright (c) 2004  - 2014, Intel Corporation. All rights reserved.<BR>
4 
5 
6   This program and the accompanying materials are licensed and made available under
7 
8   the terms and conditions of the BSD License that accompanies this distribution.
9 
10   The full text of the license may be found at
11 
12   http://opensource.org/licenses/bsd-license.php.
13 
14 
15 
16   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 
18   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 
20 
21 
22 
23 
24 Module Name:
25 
26   MiscOnboardDeviceData.c
27 
28 Abstract:
29 
30   Static data of Onboard device information .
31   The onboard device information is Misc. subclass type 8 and SMBIOS type 10.
32 
33 
34 **/
35 
36 
37 #include "CommonHeader.h"
38 
39 #include "MiscSubclassDriver.h"
40 
41 //
42 // Static (possibly build generated) Bios Vendor data.
43 //
44 MISC_SMBIOS_TABLE_DATA(EFI_MISC_ONBOARD_DEVICE_DATA, MiscOnboardDeviceVideo) = {
45   STRING_TOKEN(STR_MISC_ONBOARD_DEVICE_VIDEO),  // OnBoardDeviceDescription
46   {                             // OnBoardDeviceStatus
47     EfiOnBoardDeviceTypeVideo,  // DeviceType
48     1,                          // DeviceEnabled
49     0                           // Reserved
50   },
51   0                             // OnBoardDevicePath
52 };
53 MISC_SMBIOS_TABLE_DATA(EFI_MISC_ONBOARD_DEVICE_DATA, MiscOnboardDeviceAudio) = {
54   STRING_TOKEN(STR_MISC_ONBOARD_DEVICE_AUDIO),    // OnBoardDeviceDescription
55   {                                 // OnBoardDeviceStatus
56     EfiOnBoardDeviceTypeSound,      // DeviceType
57     1,                              // DeviceEnabled
58     0                               // Reserved
59   },
60   0                                 // OnBoardDevicePath
61 };
62 
63