From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D82BEC76188 for ; Wed, 5 Apr 2023 14:44:16 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 11B1685FC3; Wed, 5 Apr 2023 16:43:54 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=tinylab.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 7BD8F85F66; Wed, 5 Apr 2023 14:15:43 +0200 (CEST) Received: from bg4.exmail.qq.com (bg4.exmail.qq.com [43.155.65.254]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id DCBC685F6F for ; Wed, 5 Apr 2023 14:15:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=tinylab.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=bmeng@tinylab.org X-QQ-mid: bizesmtp71t1680696930tol6xjgv Received: from ubuntu.. ( [111.196.129.125]) by bizesmtp.qq.com (ESMTP) with id ; Wed, 05 Apr 2023 20:15:29 +0800 (CST) X-QQ-SSF: 01200000002000D0F000B00A0000000 X-QQ-FEAT: ZbT1X8e7m5G8eJ3a1L68n9RSz43oVnt+WLztXVhQ8/FWoAzI+/1jKT60AzjDq DQXTcb28v6WsqmRwaKDFjZuxrNnAddU1qKQ+bzqmlGBcghC38+46sE+YS5HObkEf8Zy6fS/ uYSLXQbecxj88qIcPVR3Pf8AQbEwssBCWslr8rxHbb8+eIMpMu6bIaWbDN3LCKgRh+RA+dk li4nL0tHR2B5+eLfTMiMEUzZrlA+vvHdrGuO9NPloe38jHiUIbxVfiYup+74fs5MSGiriqc RHdUU8tML0PGPQYmJIXcEwEEapCM4EvFzYzghOkRf/Y66HTTyVXNUDG0qH9auG/MFXdmGRT rFY+arDoxMlP4sNNWaTlcXQp38teHT6BvPisPmgQ3Jhl52lhkM= X-QQ-GoodBg: 0 X-BIZMAIL-ID: 16328189290582808369 From: Bin Meng To: Heinrich Schuchardt , Ilias Apalodimas , u-boot@lists.denx.de Subject: [PATCH 5/5] efi: loader: Make efi_runtime_mmio static Date: Wed, 5 Apr 2023 20:15:19 +0800 Message-Id: <20230405121519.778846-5-bmeng@tinylab.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230405121519.778846-1-bmeng@tinylab.org> References: <20230405121519.778846-1-bmeng@tinylab.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:tinylab.org:qybglogicsvr:qybglogicsvr3 X-Mailman-Approved-At: Wed, 05 Apr 2023 16:43:25 +0200 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean efi_runtime_mmio is only referenced in efi_boottime.c Signed-off-by: Bin Meng --- lib/efi_loader/efi_runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c index cee96bfc7f..bf54d6ad87 100644 --- a/lib/efi_loader/efi_runtime.c +++ b/lib/efi_loader/efi_runtime.c @@ -32,7 +32,7 @@ struct efi_runtime_mmio_list { }; /* This list contains all runtime available mmio regions */ -LIST_HEAD(efi_runtime_mmio); +static LIST_HEAD(efi_runtime_mmio); static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void); -- 2.34.1