2011-05-11 20:31:20 +02:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:44 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
Module Name:
|
2011-06-28 18:50:26 +02:00
|
|
|
|
2011-05-11 20:31:20 +02:00
|
|
|
MiscResetCapabilitiesData.c
|
2011-06-28 18:50:26 +02:00
|
|
|
|
|
|
|
Abstract:
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
This driver parses the mMiscSubclassDataTable structure and reports
|
|
|
|
any generated data to the DataHub.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "MiscSubClassDriver.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// Static (possibly build generated) Bios Vendor data.
|
|
|
|
//
|
|
|
|
MISC_SMBIOS_TABLE_DATA(EFI_MISC_RESET_CAPABILITIES, MiscResetCapabilities) = {
|
|
|
|
{ // ResetCapabilities
|
|
|
|
0, // Status
|
|
|
|
0, // BootOption
|
|
|
|
0, // BootOptionOnLimit
|
|
|
|
0, // WatchdogTimerPresent
|
|
|
|
0 // Reserved
|
|
|
|
},
|
|
|
|
0, // ResetCount
|
|
|
|
0, // ResetLimit
|
|
|
|
0, // ResetTimerInterval
|
|
|
|
0 // ResetTimeout
|
|
|
|
};
|
|
|
|
|
|
|
|
/* eof - MiscResetCapabilities.c */
|