From nobody Mon Apr 29 13:38:32 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1503024755150133.09546221568257; Thu, 17 Aug 2017 19:52:35 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 8E0C921E79036; Thu, 17 Aug 2017 19:50:04 -0700 (PDT) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (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 7611821E79008 for ; Thu, 17 Aug 2017 19:50:03 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP; 17 Aug 2017 19:52:31 -0700 Received: from jiaxinwu-mobl2.ccr.corp.intel.com ([10.239.196.167]) by fmsmga001.fm.intel.com with ESMTP; 17 Aug 2017 19:52:29 -0700 X-Original-To: edk2-devel@lists.01.org X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,391,1498546800"; d="scan'208";a="1184117955" From: Jiaxin Wu To: edk2-devel@lists.01.org Date: Fri, 18 Aug 2017 10:52:28 +0800 Message-Id: <1503024748-4736-1-git-send-email-jiaxin.wu@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 Subject: [edk2] [Patch] MdeModulePkg/Library: Remove the self-reference in UdpIoLib/TcpIoLib/IpIoLib X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ye Ting , Shao Ming , Fu Siyuan , Wu Jiaxin MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Cc: Ye Ting Cc: Fu Siyuan Cc: Shao Ming Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin Reviewed-by: Fu Siyuan --- MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf | 3 +-- MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf | 3 +-- MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf b/MdeModulePkg/= Library/DxeIpIoLib/DxeIpIoLib.inf index f62a36f..086c74d 100644 --- a/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf +++ b/MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf @@ -1,9 +1,9 @@ ## @file # This library instance provides IP services upon EFI IPv4/IPv6 Protocols. # -# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the B= SD License # which accompanies this distribution. The full text of the license may = be found at # http://opensource.org/licenses/bsd-license.php # @@ -35,11 +35,10 @@ MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec =20 =20 [LibraryClasses] - IpIoLib BaseLib DebugLib UefiBootServicesTableLib MemoryAllocationLib BaseMemoryLib diff --git a/MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf b/MdeModulePk= g/Library/DxeTcpIoLib/DxeTcpIoLib.inf index 4f11c6f..1b29dce 100644 --- a/MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf +++ b/MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf @@ -1,9 +1,9 @@ ## @file # This library instance provides TCP services by EFI TCPv4/TCPv6 Protocol= s. # =20 -# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the B= SD License # which accompanies this distribution. The full text of the license may = be found at # http://opensource.org/licenses/bsd-license.php # @@ -35,11 +35,10 @@ MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec =20 =20 [LibraryClasses] - TcpIoLib BaseLib DebugLib UefiBootServicesTableLib MemoryAllocationLib BaseMemoryLib diff --git a/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf b/MdeModulePk= g/Library/DxeUdpIoLib/DxeUdpIoLib.inf index a9683c9..ce6e996 100644 --- a/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf +++ b/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf @@ -1,9 +1,9 @@ ## @file # This library instance provides UDP services by consuming EFI UDPv4/UDPv= 6 Protocols. # =20 -# Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the B= SD License # which accompanies this distribution. The full text of the license may = be found at # http://opensource.org/licenses/bsd-license.php # @@ -35,11 +35,10 @@ MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec =20 =20 [LibraryClasses] - UdpIoLib BaseLib DebugLib UefiBootServicesTableLib MemoryAllocationLib BaseMemoryLib --=20 1.9.5.msysgit.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel