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 MiscResetCapabilitiesData.c 27 28 Abstract: 29 30 Static data of Reset Capabilities information. 31 Reset Capabilities information is Misc. subclass type 17 and SMBIOS type 23. 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_RESET_CAPABILITIES, MiscResetCapabilities) 45 = { 46 { // ResetCapabilities 47 0, // Status 48 0, // BootOption 49 0, // BootOptionOnLimit 50 0, // WatchdogTimerPresent 51 0 // Reserved 52 }, 53 0xFFFF, // ResetCount 54 0xFFFF, // ResetLimit 55 0xFFFF, // ResetTimerInterval 56 0xFFFF // ResetTimeout 57 }; 58