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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 19E0681F16 for ; Thu, 17 Nov 2016 21:57:53 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 17 Nov 2016 21:57:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,655,1473145200"; d="scan'208";a="1086940597" Received: from shwdeopenpsi068.ccr.corp.intel.com ([10.239.9.9]) by fmsmga002.fm.intel.com with ESMTP; 17 Nov 2016 21:57:55 -0800 From: Star Zeng To: edk2-devel@lists.01.org Cc: Star Zeng , Jiewen Yao , Chao Zhang Date: Fri, 18 Nov 2016 13:57:47 +0800 Message-Id: <1479448668-68452-4-git-send-email-star.zeng@intel.com> X-Mailer: git-send-email 2.7.0.windows.1 In-Reply-To: <1479448668-68452-1-git-send-email-star.zeng@intel.com> References: <1479448668-68452-1-git-send-email-star.zeng@intel.com> Subject: [PATCH V2 3/4] SecurityPkg TPM2: Update desc for param Buffer of GetDigestListSize() 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: Fri, 18 Nov 2016 05:57:53 -0000 To make the description more clear, update the description for parameter Buffer of GetDigestListSize() to "Buffer to hold copied TPML_DIGEST_VALUES compact binary.". Cc: Jiewen Yao Cc: Chao Zhang Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng --- SecurityPkg/Include/Library/Tpm2CommandLib.h | 2 +- SecurityPkg/Library/Tpm2CommandLib/Tpm2Help.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SecurityPkg/Include/Library/Tpm2CommandLib.h b/SecurityPkg/Include/Library/Tpm2CommandLib.h index 699270f127a1..f7a04f20929a 100644 --- a/SecurityPkg/Include/Library/Tpm2CommandLib.h +++ b/SecurityPkg/Include/Library/Tpm2CommandLib.h @@ -1038,7 +1038,7 @@ IsHashAlgSupportedInHashAlgorithmMask( /** Copy TPML_DIGEST_VALUES into a buffer - @param[in,out] Buffer Buffer to hold TPML_DIGEST_VALUES. + @param[in,out] Buffer Buffer to hold copied TPML_DIGEST_VALUES compact binary. @param[in] DigestList TPML_DIGEST_VALUES to be copied. @param[in] HashAlgorithmMask HASH bits corresponding to the desired digests to copy. diff --git a/SecurityPkg/Library/Tpm2CommandLib/Tpm2Help.c b/SecurityPkg/Library/Tpm2CommandLib/Tpm2Help.c index 9aa77af97af1..64d3c531ff92 100644 --- a/SecurityPkg/Library/Tpm2CommandLib/Tpm2Help.c +++ b/SecurityPkg/Library/Tpm2CommandLib/Tpm2Help.c @@ -239,7 +239,7 @@ IsHashAlgSupportedInHashAlgorithmMask( /** Copy TPML_DIGEST_VALUES into a buffer - @param[in,out] Buffer Buffer to hold TPML_DIGEST_VALUES. + @param[in,out] Buffer Buffer to hold copied TPML_DIGEST_VALUES compact binary. @param[in] DigestList TPML_DIGEST_VALUES to be copied. @param[in] HashAlgorithmMask HASH bits corresponding to the desired digests to copy. -- 2.7.0.windows.1