From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.93; helo=mga11.intel.com; envelope-from=jiaxin.wu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3094221161B05 for ; Sun, 7 Oct 2018 20:03:34 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Oct 2018 20:03:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,355,1534834800"; d="scan'208";a="90017807" Received: from jiaxinwu-mobl.ccr.corp.intel.com ([10.239.192.155]) by orsmga003.jf.intel.com with ESMTP; 07 Oct 2018 20:03:32 -0700 From: Jiaxin Wu To: edk2-devel@lists.01.org Cc: Carsey Jaben , Fu Siyuan , Ye Ting , Bi Dandan , Wu Jiaxin Date: Mon, 8 Oct 2018 11:03:25 +0800 Message-Id: <20181008030325.4188-3-Jiaxin.wu@intel.com> X-Mailer: git-send-email 2.17.1.windows.2 In-Reply-To: <20181008030325.4188-1-Jiaxin.wu@intel.com> References: <20181008030325.4188-1-Jiaxin.wu@intel.com> Subject: [Patch 2/2] ShellPkg/TftpDynamicCommand: Correct comments to align with the input parameter. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2018 03:03:34 -0000 Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1230 Cc: Carsey Jaben Cc: Fu Siyuan Cc: Ye Ting Cc: Bi Dandan Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Wu Jiaxin --- ShellPkg/DynamicCommand/TftpDynamicCommand/Tftp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ShellPkg/DynamicCommand/TftpDynamicCommand/Tftp.c b/ShellPkg/DynamicCommand/TftpDynamicCommand/Tftp.c index d4391b9f33..ccf7abde42 100644 --- a/ShellPkg/DynamicCommand/TftpDynamicCommand/Tftp.c +++ b/ShellPkg/DynamicCommand/TftpDynamicCommand/Tftp.c @@ -163,10 +163,11 @@ GetFileSize ( @param[in] Mtftp4 MTFTP4 protocol interface @param[in] FilePath Path of the file, Unicode encoded @param[in] AsciiFilePath Path of the file, ASCII encoded @param[in] FileSize Size of the file in number of bytes @param[in] BlockSize Value of the TFTP blksize option + @param[in] WindowSize Value of the TFTP window size option @param[out] Data Address where to store the address of the buffer where the data of the file were downloaded in case of success. @retval EFI_SUCCESS The file was downloaded. @@ -904,10 +905,11 @@ Error : @param[in] Mtftp4 MTFTP4 protocol interface @param[in] FilePath Path of the file, Unicode encoded @param[in] AsciiFilePath Path of the file, ASCII encoded @param[in] FileSize Size of the file in number of bytes @param[in] BlockSize Value of the TFTP blksize option + @param[in] WindowSize Value of the TFTP window size option @param[out] Data Address where to store the address of the buffer where the data of the file were downloaded in case of success. @retval EFI_SUCCESS The file was downloaded. -- 2.17.1.windows.2