aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Meng <bmeng@tinylab.org>2023-04-05 20:15:19 +0800
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-04-08 07:46:44 +0200
commit6fc4fc38ac4d11ac53b4d539588d216d107f7703 (patch)
tree60b757aff911ec171fd4fc4f1f91418b1fdb9ebb
parent207b686421563c574eb1179efd4fa7eedddfab5f (diff)
downloadu-boot-6fc4fc38ac4d11ac53b4d539588d216d107f7703.zip
u-boot-6fc4fc38ac4d11ac53b4d539588d216d107f7703.tar.gz
u-boot-6fc4fc38ac4d11ac53b4d539588d216d107f7703.tar.bz2
efi: loader: Make efi_runtime_mmio static
efi_runtime_mmio is only referenced in efi_boottime.c Signed-off-by: Bin Meng <bmeng@tinylab.org>
-rw-r--r--lib/efi_loader/efi_runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c
index cee96bf..bf54d6a 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);