From nobody Sun May 5 23:01:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+44920+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+44920+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1565057850; cv=none; d=zoho.com; s=zohoarc; b=mGdkL2/rF2D7UARPr1o0fqM2IVj6/U5c6IT37rPVZpx6PTPXjYWnuMFGjRTQ/cJ97DAmk7fHUdYT8OLRUccUldafMwcmYXMqYXXis5H/wlZPrWYkwOy1BdZ1EPuUCQCmlZdmZlKijCfGDBl5xDJ6ZsK8hJWY0X+IJFbH1+0NcAQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1565057850; h=Cc:Date:From:List-Id:List-Unsubscribe:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=YtJV2Tyog7Wincacx5d9Uz5D3cVy2I8Mkch3rr1zdA8=; b=KSsraHNe6T1+jgJXVdtTTRCo+sKu/9vULoB8pwvqnC4Sm+mfWXi920aysKHAbdjJytAEmEvLiJasy5kkEWjjqnG13HM+9pLu4nblqH3yeWvTcwLk6mmQPFRX6e/3VrV5ECr6Xbv4Y9MDa7ikpnbnyUR+BJXad3pIhNCr355YXhs= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+44920+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1565057850180992.5146658836026; Mon, 5 Aug 2019 19:17:30 -0700 (PDT) Return-Path: X-Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by groups.io with SMTP; Mon, 05 Aug 2019 19:17:29 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Aug 2019 19:17:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,352,1559545200"; d="scan'208";a="349282698" X-Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by orsmga005.jf.intel.com with ESMTP; 05 Aug 2019 19:17:27 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: [edk2-devel] [PATCH] MdePkg/BaseUefiDecompressLib: Add missing description for parameter Date: Tue, 6 Aug 2019 10:17:22 +0800 Message-Id: <20190806021722.6476-1-shenglei.zhang@intel.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,shenglei.zhang@intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1565057849; bh=ckCiH1eU0l8iVU4HgLRcBu9WzlNJ63fMIwKI5lA2wkE=; h=Cc:Date:From:Reply-To:Subject:To; b=KhaRqm4wbmKpg8EpPq2xWiGKAt26t6r7rpw6kV+kbvT5XLKxgHDCiAe/ohXPF6T+Qpn st7F2CqGyTnUnEEhr1ZG6q6Q6LtMEQ/xgNJBEXYgEHSQYAERGyenZ0J86ZS8uY+hq6MS8 ExeJPYqpCts67W/BwXZC6x5SPP/AzCr4MFc= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The description of parameter Version is missing in comments. So add the description. Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Shenglei Zhang Reviewed-by: Liming Gao --- .../BaseUefiDecompressLib/BaseUefiDecompressLibInternals.h | 1 + 1 file changed, 1 insertion(+) diff --git a/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLibInte= rnals.h b/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLibInterna= ls.h index 0bfb50333777..4df3fa388ddb 100644 --- a/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLibInternals.h +++ b/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLibInternals.h @@ -230,6 +230,7 @@ Decode ( @param Scratch A temporary scratch buffer that is used to perform t= he decompression. This is an optional parameter that may be NULL if the required scratch buffer size is 0. + @param Version 1 for UEFI Decompress algoruthm, 2 for Tiano Decompe= ss algorithm. =20 @retval RETURN_SUCCESS Decompression completed successfully, and the uncompressed buffer is returned in Destinati= on. --=20 2.18.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#44920): https://edk2.groups.io/g/devel/message/44920 Mute This Topic: https://groups.io/mt/32737332/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-