summaryrefslogtreecommitdiff
path: root/lib/efi_selftest
diff options
context:
space:
mode:
authorBin Meng <bmeng@tinylab.org>2023-04-05 15:15:15 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-04-08 08:46:44 +0300
commit013f9f89f89045b77c4d1c92ea0875a46916095a (patch)
tree090658ad54e95f0144875887cbebefea8bc6985a /lib/efi_selftest
parent199675b9d54c9be682e98b4835d22da98c0b11e3 (diff)
downloadu-boot-013f9f89f89045b77c4d1c92ea0875a46916095a.tar.xz
efi: selftest: Make record static
record is only referenced in efi_selftest_exitbootservices.c Signed-off-by: Bin Meng <bmeng@tinylab.org>
Diffstat (limited to 'lib/efi_selftest')
-rw-r--r--lib/efi_selftest/efi_selftest_exitbootservices.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/efi_selftest_exitbootservices.c b/lib/efi_selftest/efi_selftest_exitbootservices.c
index 11b43fdd90..b090ce74d2 100644
--- a/lib/efi_selftest/efi_selftest_exitbootservices.c
+++ b/lib/efi_selftest/efi_selftest_exitbootservices.c
@@ -27,7 +27,7 @@ struct notification_context {
static struct efi_boot_services *boottime;
static struct efi_event *efi_st_event_notify;
-struct notification_record record;
+static struct notification_record record;
struct notification_context context_before = {
.record = &record,