1 /**@file
2 
3 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
4 Copyright (c) 2015, Hisilicon Limited. All rights reserved.<BR>
5 Copyright (c) 2015, Linaro Limited. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7 
8 Module Name:
9 
10   MiscBootInformationData.c
11 
12 Abstract:
13 
14   This driver parses the mMiscSubclassDataTable structure and reports
15   any generated data to the DataHub.
16 
17 Based on files under Nt32Pkg/MiscSubClassPlatformDxe/
18 **/
19 
20 #include "SmbiosMisc.h"
21 
22 //
23 // Static (possibly build generated) Bios Vendor data.
24 //
25 MISC_SMBIOS_TABLE_DATA(SMBIOS_TABLE_TYPE32, MiscBootInformation) = {
26   {                                                     // Hdr
27     EFI_SMBIOS_TYPE_SYSTEM_BOOT_INFORMATION,              // Type,
28     0,                                                    // Length,
29     0                                                     // Handle
30   },
31   {                                                     // Reserved[6]
32     0,
33     0,
34     0,
35     0,
_file_existing(request, filename, fdarg, objarg=None)36     0,
37     0
38   },
39   BootInformationStatusNoError                          // BootInformationStatus
40 };
41 
42 /* eof - MiscBootInformationData.c */
43