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:
|
|
|
|
|
|
|
|
MiscResetCapabilitiesData.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_RESET_CAPABILITIES, MiscResetCapabilities) = {
|
2007-06-27 08:46:00 +02:00
|
|
|
{ // ResetCapabilities
|
|
|
|
0, // Status
|
|
|
|
0, // BootOption
|
|
|
|
0, // BootOptionOnLimit
|
|
|
|
0, // WatchdogTimerPresent
|
|
|
|
0 // Reserved
|
|
|
|
},
|
|
|
|
0, // ResetCount
|
|
|
|
0, // ResetLimit
|
|
|
|
0, // ResetTimerInterval
|
|
|
|
0 // ResetTimeout
|
|
|
|
};
|
|
|
|
|
|
|
|
/* eof - MiscResetCapabilities.c */
|