From nobody Sun May 19 13:54:38 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+99557+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+99557+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1675422538; cv=none; d=zohomail.com; s=zohoarc; b=Yqgl3cOFPggGZofwQbxdCObSnP/TU/afh1Vqs974ekPJj6MPq1Z2MlsvkddGxk7JBsVS/vwC5Uzn/NRs8KupVJgIMyREYtMGNy4DFFyPpHUX87dvqPwwv4Vjx0kBA2A38mDjeQt4nolWaROaKH4QXt4jNp/YH7VJg6eY8dW3tcU= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1675422538; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To; bh=78We4bIfBuyIvAstYYzZQCfX1HBvAEFqVaFNnpjXwVQ=; b=XJv/k8WUUARBybx2QhI2jbzV1z4c+zAFz9CO+u5PnpCw7Fhiaw+aKx1UD94kehZIpY7fUw+ywMnOyqAHyl13xBkZ+oD6weInmk1mdSn7Im53DVJxRjoSgfysDMpJMNavAFEbM+yGmmZzQ8NZT51s6c3q74G+FooC6op0rjmcVmY= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+99557+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1675422538652193.4994474863289; Fri, 3 Feb 2023 03:08:58 -0800 (PST) Return-Path: X-Received: by 127.0.0.2 with SMTP id EL9sYY1788612xAkwz2yVrpF; Fri, 03 Feb 2023 03:08:58 -0800 X-Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mx.groups.io with SMTP id smtpd.web10.8036.1675422537058526989 for ; Fri, 03 Feb 2023 03:08:57 -0800 X-Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 12C4DB8287A; Fri, 3 Feb 2023 11:08:55 +0000 (UTC) X-Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69DFEC433D2; Fri, 3 Feb 2023 11:08:52 +0000 (UTC) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: sunilvl@ventanamicro.com, Ard Biesheuvel , Leif Lindholm , Abner Chang , Daniel Schaefer Subject: [edk2-devel] [PATCH] EmbeddedPkg/PrePiLib: Drop unused PCD PcdPrePiCpuIoSize Date: Fri, 3 Feb 2023 12:08:43 +0100 Message-Id: <20230203110843.2349736-1-ardb@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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,ardb@kernel.org X-Gm-Message-State: 0gP9C7tjC5NVoHdCRbi336xvx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1675422538; bh=6M9RWFjgLRZGGU5lv5QiU0wpCVlCcyyj7NHJBSm3bGg=; h=Cc:Date:From:Reply-To:Subject:To; b=b2OTEbrOWM0RCZpJe8M9o3s2yHwKTpRQbxDN5TSxdMDpa4Ue9h52o+VTQ0FzEmDFGhJ ChQB9wF0811iJfod1xSIn7nmNR32pS+i9Mn0E6WawkkCTTeZfjKdsf8hYPpx1iNrnNutZ J00ilDDbyRYene3gx4cPjGMSpl8IbsnVYEQ= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1675422539985100001 Content-Type: text/plain; charset="utf-8" The code never references the PCD so the INF should not reference it either. The last reference was moved to PrePiHobLib in commit 05e48e00834b32e4bd2 (dated 2011!) and dropped from there as well in commit 97106391955337155e7. Cc: Leif Lindholm Cc: Abner Chang Cc: Daniel Schaefer Reported-by: Sunil V L Signed-off-by: Ard Biesheuvel Reviewed-by: Sunil V L --- EmbeddedPkg/Library/PrePiLib/PrePiLib.inf | 2 -- 1 file changed, 2 deletions(-) diff --git a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf b/EmbeddedPkg/Librar= y/PrePiLib/PrePiLib.inf index 3c749ca22943..090bfe888f52 100644 --- a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf +++ b/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf @@ -58,8 +58,6 @@ [Protocols] =20 =20 [FixedPcd.common] - gEmbeddedTokenSpaceGuid.PcdPrePiCpuIoSize - gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType --=20 2.39.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 (#99557): https://edk2.groups.io/g/devel/message/99557 Mute This Topic: https://groups.io/mt/96720569/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-