NetworkPkg: Coding style refine for IpSecDxe

Cc: Bi Dandan <dandan.bi@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
Reviewed-by: Dandan Bi <dandan.bi@intel.com>
This commit is contained in:
Jiaxin Wu 2016-10-20 09:46:19 +08:00
parent c3926cdbbd
commit 55d05ae145
2 changed files with 10 additions and 10 deletions

View File

@ -201,9 +201,9 @@ IkePayloadFree (
/**
Generate an new SPI.
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
Session.
@param[in out] SpiValue Pointer to the new generated SPI value.
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
Session.
@param[in, out] SpiValue Pointer to the new generated SPI value.
@retval EFI_SUCCESS The operation performs successfully.
@retval Otherwise The operation is failed.
@ -211,8 +211,8 @@ IkePayloadFree (
**/
EFI_STATUS
IkeGenerateSpi (
IN IKEV2_SA_SESSION *IkeSaSession,
OUT UINT32 *SpiValue
IN IKEV2_SA_SESSION *IkeSaSession,
IN OUT UINT32 *SpiValue
)
{
EFI_STATUS Status;

View File

@ -132,9 +132,9 @@ IkePayloadFree (
/**
Generate an new SPI.
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
Session.
@param[in out] SpiValue Pointer to the new generated SPI value.
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
Session.
@param[in, out] SpiValue Pointer to the new generated SPI value.
@retval EFI_SUCCESS The operation performs successfully.
@retval Otherwise The operation is failed.
@ -142,8 +142,8 @@ IkePayloadFree (
**/
EFI_STATUS
IkeGenerateSpi (
IN IKEV2_SA_SESSION *IkeSaSession,
OUT UINT32 *SpiValue
IN IKEV2_SA_SESSION *IkeSaSession,
IN OUT UINT32 *SpiValue
);
/**