2008-03-19 04:23:16 +01:00
|
|
|
/**@file
|
2007-06-27 08:46:00 +02:00
|
|
|
|
2010-04-28 14:24:39 +02:00
|
|
|
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:18 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
MiscBootInformationData.c
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
This driver parses the mMiscSubclassDataTable structure and reports
|
|
|
|
any generated data to the DataHub.
|
|
|
|
|
2008-03-19 04:23:16 +01:00
|
|
|
**/
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
#include "MiscSubclassDriver.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// Static (possibly build generated) Bios Vendor data.
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
MISC_SMBIOS_TABLE_DATA(EFI_MISC_BOOT_INFORMATION_STATUS_DATA, BootInformationStatus) = {
|
2007-06-27 08:46:00 +02:00
|
|
|
EfiBootInformationStatusNoError, // BootInformationStatus
|
|
|
|
0 // BootInformationData
|
|
|
|
};
|
|
|
|
|
|
|
|
/* eof - MiscBootInformationData.c */
|