mirror of https://github.com/acidanthera/audk.git
MdePkg: update comments in ResetSystem() according to UEFI2.7
Cc: Liming Gao <liming.gao@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
parent
5779d550be
commit
28426918f0
|
@ -2,7 +2,7 @@
|
||||||
Provides library functions for each of the UEFI Runtime Services.
|
Provides library functions for each of the UEFI Runtime Services.
|
||||||
Only available to DXE and UEFI module types.
|
Only available to DXE and UEFI module types.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
the terms and conditions of the BSD License that accompanies this distribution.
|
the terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -329,9 +329,8 @@ EfiGetNextHighMonotonicCount (
|
||||||
Null-terminated Unicode string, optionally followed by additional binary data. The string is a
|
Null-terminated Unicode string, optionally followed by additional binary data. The string is a
|
||||||
description that the caller may use to further indicate the reason for the system reset. ResetData
|
description that the caller may use to further indicate the reason for the system reset. ResetData
|
||||||
is only valid if ResetStatus is something other then EFI_SUCCESS. This pointer must be a physical
|
is only valid if ResetStatus is something other then EFI_SUCCESS. This pointer must be a physical
|
||||||
address. For a ResetType of EfiRestUpdate the data buffer also starts with a Null-terminated string
|
address. For a ResetType of EfiResetPlatformSpecific the data buffer also starts with a Null-terminated
|
||||||
that is followed by a physical VOID * to an EFI_CAPSULE_HEADER.
|
string that is followed by an EFI_GUID that describes the specific type of reset to perform.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
|
|
@ -1020,6 +1020,9 @@ EFI_STATUS
|
||||||
valid if ResetStatus is something other than EFI_SUCCESS
|
valid if ResetStatus is something other than EFI_SUCCESS
|
||||||
unless the ResetType is EfiResetPlatformSpecific
|
unless the ResetType is EfiResetPlatformSpecific
|
||||||
where a minimum amount of ResetData is always required.
|
where a minimum amount of ResetData is always required.
|
||||||
|
For a ResetType of EfiResetPlatformSpecific the data buffer
|
||||||
|
also starts with a Null-terminated string that is followed
|
||||||
|
by an EFI_GUID that describes the specific type of reset to perform.
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
VOID
|
VOID
|
||||||
|
|
Loading…
Reference in New Issue