From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CBFB21A1E2A for ; Thu, 20 Oct 2016 01:09:53 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP; 20 Oct 2016 01:09:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,518,1473145200"; d="scan'208";a="21627431" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga005.fm.intel.com with ESMTP; 20 Oct 2016 01:09:53 -0700 Received: from fmsmsx101.amr.corp.intel.com (10.18.124.199) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 20 Oct 2016 01:09:53 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx101.amr.corp.intel.com (10.18.124.199) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 20 Oct 2016 01:09:52 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.206]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.104]) with mapi id 14.03.0248.002; Thu, 20 Oct 2016 16:09:51 +0800 From: "Bi, Dandan" To: "Wu, Jiaxin" , "edk2-devel@lists.01.org" CC: "Fu, Siyuan" Thread-Topic: [Patch] NetworkPkg: Coding style refine for IpSecDxe Thread-Index: AQHSKnQ3JAZ8aLpDV0aV5IyWOMCA9qCw/VNw Date: Thu, 20 Oct 2016 08:09:50 +0000 Message-ID: <3C0D5C461C9E904E8F62152F6274C0BB3963D184@shsmsx102.ccr.corp.intel.com> References: <1476928171-19356-1-git-send-email-jiaxin.wu@intel.com> In-Reply-To: <1476928171-19356-1-git-send-email-jiaxin.wu@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] NetworkPkg: Coding style refine for IpSecDxe X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2016 08:09:54 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Dandan Bi Thanks, Dandan -----Original Message----- From: Wu, Jiaxin=20 Sent: Thursday, October 20, 2016 9:50 AM To: edk2-devel@lists.01.org Cc: Bi, Dandan ; Fu, Siyuan Subject: [Patch] NetworkPkg: Coding style refine for IpSecDxe Cc: Bi Dandan Cc: Fu Siyuan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiaxin Wu --- NetworkPkg/IpSecDxe/IkeCommon.c | 10 +++++----- NetworkPkg/IpSecDxe/IkeCo= mmon.h | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NetworkPkg/IpSecDxe/IkeCommon.c b/NetworkPkg/IpSecDxe/IkeCommo= n.c index b1e4321..c5fbfab 100644 --- a/NetworkPkg/IpSecDxe/IkeCommon.c +++ b/NetworkPkg/IpSecDxe/IkeCommon.c @@ -199,22 +199,22 @@ IkePayloadFree ( } =20 /** Generate an new SPI. =20 - @param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to th= is Child SA=20 - Session. - @param[in out] SpiValue Pointer to the new generated SPI value.=20 + @param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to t= his Child SA=20 + Session. + @param[in, out] SpiValue Pointer to the new generated SPI value.= =20 =20 @retval EFI_SUCCESS The operation performs successfully. @retval Otherwise The operation is failed. =20 **/ EFI_STATUS IkeGenerateSpi ( - IN IKEV2_SA_SESSION *IkeSaSession, - OUT UINT32 *SpiValue + IN IKEV2_SA_SESSION *IkeSaSession, + IN OUT UINT32 *SpiValue ) { EFI_STATUS Status; =20 Status =3D EFI_SUCCESS; diff --git a/NetworkPkg/IpSecDxe/IkeCommon.h b/NetworkPkg/IpSecDxe/IkeCommo= n.h index 7f7fd4d..eb7e913 100644 --- a/NetworkPkg/IpSecDxe/IkeCommon.h +++ b/NetworkPkg/IpSecDxe/IkeCommon.h @@ -130,22 +130,22 @@ IkePayloadFree ( ); =20 /** Generate an new SPI. =20 - @param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to th= is Child SA=20 - Session. - @param[in out] SpiValue Pointer to the new generated SPI value.=20 + @param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to t= his Child SA=20 + Session. + @param[in, out] SpiValue Pointer to the new generated SPI value.= =20 =20 @retval EFI_SUCCESS The operation performs successfully. @retval Otherwise The operation is failed. =20 **/ EFI_STATUS IkeGenerateSpi ( - IN IKEV2_SA_SESSION *IkeSaSession, - OUT UINT32 *SpiValue + IN IKEV2_SA_SESSION *IkeSaSession, + IN OUT UINT32 *SpiValue ); =20 /** Generate a random data for IV =20 -- 1.9.5.msysgit.1