mirror of https://github.com/acidanthera/audk.git
NetworkPkg/IScsiDxe: reformat IScsiHexToBin() leading comment block
We'll need further return values for IScsiHexToBin() in a subsequent patch; make room for them in the leading comment block of the function. While at it, rewrap the comment block to 80 characters width. No functional changes. Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com> Cc: Philippe Mathieu-Daudé <philmd@redhat.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3356 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@linux.intel.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210608121259.32451-8-lersek@redhat.com>
This commit is contained in:
parent
d90fff40cb
commit
dc469f1371
|
@ -370,14 +370,14 @@ IScsiBinToHex (
|
|||
/**
|
||||
Convert the hexadecimal string into a binary encoded buffer.
|
||||
|
||||
@param[in, out] BinBuffer The binary buffer.
|
||||
@param[in, out] BinLength Length of the binary buffer.
|
||||
@param[in] HexStr The hexadecimal string.
|
||||
|
||||
@retval EFI_SUCCESS The hexadecimal string is converted into a binary
|
||||
encoded buffer.
|
||||
@retval EFI_BUFFER_TOO_SMALL The binary buffer is too small to hold the converted data.
|
||||
@param[in, out] BinBuffer The binary buffer.
|
||||
@param[in, out] BinLength Length of the binary buffer.
|
||||
@param[in] HexStr The hexadecimal string.
|
||||
|
||||
@retval EFI_SUCCESS The hexadecimal string is converted into a
|
||||
binary encoded buffer.
|
||||
@retval EFI_BUFFER_TOO_SMALL The binary buffer is too small to hold the
|
||||
converted data.
|
||||
**/
|
||||
EFI_STATUS
|
||||
IScsiHexToBin (
|
||||
|
|
|
@ -165,14 +165,14 @@ IScsiBinToHex (
|
|||
/**
|
||||
Convert the hexadecimal string into a binary encoded buffer.
|
||||
|
||||
@param[in, out] BinBuffer The binary buffer.
|
||||
@param[in, out] BinLength Length of the binary buffer.
|
||||
@param[in] HexStr The hexadecimal string.
|
||||
|
||||
@retval EFI_SUCCESS The hexadecimal string is converted into a binary
|
||||
encoded buffer.
|
||||
@retval EFI_BUFFER_TOO_SMALL The binary buffer is too small to hold the converted data.
|
||||
@param[in, out] BinBuffer The binary buffer.
|
||||
@param[in, out] BinLength Length of the binary buffer.
|
||||
@param[in] HexStr The hexadecimal string.
|
||||
|
||||
@retval EFI_SUCCESS The hexadecimal string is converted into a
|
||||
binary encoded buffer.
|
||||
@retval EFI_BUFFER_TOO_SMALL The binary buffer is too small to hold the
|
||||
converted data.
|
||||
**/
|
||||
EFI_STATUS
|
||||
IScsiHexToBin (
|
||||
|
|
Loading…
Reference in New Issue