From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.24; helo=mga09.intel.com; envelope-from=jian.j.wang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (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 7429621193598 for ; Wed, 5 Dec 2018 21:45:38 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Dec 2018 21:45:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,321,1539673200"; d="scan'208";a="116076635" Received: from jwang36-mobl2.ccr.corp.intel.com ([10.239.192.41]) by orsmga002.jf.intel.com with ESMTP; 05 Dec 2018 21:45:37 -0800 From: Jian J Wang To: edk2-devel@lists.01.org Cc: Qin Long , Ting Ye Date: Thu, 6 Dec 2018 13:45:31 +0800 Message-Id: <20181206054531.19564-1-jian.j.wang@intel.com> X-Mailer: git-send-email 2.19.0.windows.1 MIME-Version: 1.0 Subject: [PATCH] CryptoPkg/IntrinsicLib: add missing BaseLib declaration 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: Thu, 06 Dec 2018 05:45:38 -0000 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=596 BaseLib interfaces are used in this library but not declared in module's inf file. This patch fix this situation to keep inf and its code in consistency. No functionality or interface change are involved. Cc: Qin Long Cc: Ting Ye Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jian J Wang --- CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf b/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf index 579da34aff..a91c850013 100644 --- a/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf +++ b/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf @@ -51,6 +51,7 @@ MdePkg/MdePkg.dec [LibraryClasses] + BaseLib BaseMemoryLib [BuildOptions] -- 2.19.0.windows.1