mirror of https://github.com/acidanthera/audk.git
OvmfPkg/ResetSystemLib: wrap long lines
Wrap the source code and the INF file at 79 characters. Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Philippe Mathieu-Daudé <philmd@redhat.com> Cc: Rebecca Cran <rebecca@bsdio.com> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2675 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200417153751.7110-2-lersek@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@arm.com> Reviewed-by: Rebecca Cran <rebecca@bsdio.com>
This commit is contained in:
parent
c6a60cf4b9
commit
b36fbd3645
|
@ -103,10 +103,11 @@ ResetShutdown (
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This function causes a systemwide reset. The exact type of the reset is
|
This function causes a systemwide reset. The exact type of the reset is
|
||||||
defined by the EFI_GUID that follows the Null-terminated Unicode string passed
|
defined by the EFI_GUID that follows the Null-terminated Unicode string
|
||||||
into ResetData. If the platform does not recognize the EFI_GUID in ResetData
|
passed into ResetData. If the platform does not recognize the EFI_GUID in
|
||||||
the platform must pick a supported reset type to perform.The platform may
|
ResetData the platform must pick a supported reset type to perform.The
|
||||||
optionally log the parameters from any non-normal reset that occurs.
|
platform may optionally log the parameters from any non-normal reset that
|
||||||
|
occurs.
|
||||||
|
|
||||||
@param[in] DataSize The size, in bytes, of ResetData.
|
@param[in] DataSize The size, in bytes, of ResetData.
|
||||||
@param[in] ResetData The data buffer starts with a Null-terminated string,
|
@param[in] ResetData The data buffer starts with a Null-terminated string,
|
||||||
|
@ -128,11 +129,12 @@ ResetPlatformSpecific (
|
||||||
@param[in] ResetType The type of reset to perform.
|
@param[in] ResetType The type of reset to perform.
|
||||||
@param[in] ResetStatus The status code for the reset.
|
@param[in] ResetStatus The status code for the reset.
|
||||||
@param[in] DataSize The size, in bytes, of ResetData.
|
@param[in] DataSize The size, in bytes, of ResetData.
|
||||||
@param[in] ResetData For a ResetType of EfiResetCold, EfiResetWarm, or EfiResetShutdown
|
@param[in] ResetData For a ResetType of EfiResetCold, EfiResetWarm, or
|
||||||
the data buffer starts with a Null-terminated string, optionally
|
EfiResetShutdown the data buffer starts with a
|
||||||
followed by additional binary data. The string is a description
|
Null-terminated string, optionally followed by
|
||||||
that the caller may use to further indicate the reason for the
|
additional binary data. The string is a description
|
||||||
system reset.
|
that the caller may use to further indicate the
|
||||||
|
reason for the system reset.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
LIBRARY_CLASS = ResetSystemLib
|
LIBRARY_CLASS = ResetSystemLib
|
||||||
|
|
||||||
#
|
#
|
||||||
# The following information is for reference only and not required by the build tools.
|
# The following information is for reference only and not required by the build
|
||||||
|
# tools.
|
||||||
#
|
#
|
||||||
# VALID_ARCHITECTURES = IA32 X64
|
# VALID_ARCHITECTURES = IA32 X64
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue