]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/MiscSubClassPlatformDxe/MiscResetCapabilitiesData.c
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscResetCapabilitiesData.c
1 /*++
2
3 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 Module Name:
7
8 MiscResetCapabilitiesData.c
9
10 Abstract:
11
12 This driver parses the mMiscSubclassDataTable structure and reports
13 any generated data to the DataHub.
14
15 **/
16
17 #include "MiscSubClassDriver.h"
18
19 //
20 // Static (possibly build generated) Bios Vendor data.
21 //
22 MISC_SMBIOS_TABLE_DATA(EFI_MISC_RESET_CAPABILITIES, MiscResetCapabilities) = {
23 { // ResetCapabilities
24 0, // Status
25 0, // BootOption
26 0, // BootOptionOnLimit
27 0, // WatchdogTimerPresent
28 0 // Reserved
29 },
30 0, // ResetCount
31 0, // ResetLimit
32 0, // ResetTimerInterval
33 0 // ResetTimeout
34 };
35
36 /* eof - MiscResetCapabilities.c */