From: Bin Meng Date: Wed, 5 Apr 2023 12:15:19 +0000 (+0800) Subject: efi: loader: Make efi_runtime_mmio static X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=6fc4fc38ac4d11ac53b4d539588d216d107f7703;p=u-boot.git efi: loader: Make efi_runtime_mmio static efi_runtime_mmio is only referenced in efi_boottime.c Signed-off-by: Bin Meng --- 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);