From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=209.132.183.28; helo=mx1.redhat.com; envelope-from=lersek@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 9D57521190721 for ; Sun, 25 Nov 2018 02:02:10 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2B4EC308FB8F; Sun, 25 Nov 2018 10:02:10 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-120-51.rdu2.redhat.com [10.10.120.51]) by smtp.corp.redhat.com (Postfix) with ESMTP id 280AD17CC1; Sun, 25 Nov 2018 10:02:06 +0000 (UTC) From: Laszlo Ersek To: edk2-devel@lists.01.org Cc: Anthony Perard , Ard Biesheuvel , Drew Jones , Igor Mammedov , Jordan Justen , Julien Grall , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Sun, 25 Nov 2018 11:01:50 +0100 Message-Id: <20181125100152.25675-3-lersek@redhat.com> In-Reply-To: <20181125100152.25675-1-lersek@redhat.com> References: <20181125100152.25675-1-lersek@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Sun, 25 Nov 2018 10:02:10 +0000 (UTC) Subject: [PATCH 2/4] OvmfPkg/AcpiPlatformDxe: list missing lib classes for QemuFwCfgAcpiPlatformDxe 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: Sun, 25 Nov 2018 10:02:10 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit QemuFwCfgAcpiPlatformDxe consumes PcdPciDisableBusEnumeration via AcpiPlatformEntryPoint() in "EntryPoint.c"; list the PcdLib class in the [LibraryClasses] section of the INF file. QemuFwCfgAcpiPlatformDxe calls CopyMem() at several places in "QemuFwCfgAcpi.c"; list the BaseMemoryLib class too. The other INF file, "AcpiPlatformDxe.inf", is fine already. Cc: Anthony Perard Cc: Ard Biesheuvel Cc: Drew Jones Cc: Igor Mammedov Cc: Jordan Justen Cc: Julien Grall Cc: Philippe Mathieu-Daudé Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Laszlo Ersek --- OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf index 96fc17224133..f0fb3496e700 100644 --- a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf +++ b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf @@ -42,10 +42,12 @@ [Packages] [LibraryClasses] BaseLib + BaseMemoryLib DebugLib MemoryAllocationLib OrderedCollectionLib + PcdLib QemuFwCfgLib QemuFwCfgS3Lib UefiBootServicesTableLib UefiDriverEntryPoint -- 2.19.1.3.g30247aa5d201