From: Bin Meng Date: Wed, 5 Apr 2023 12:15:15 +0000 (+0800) Subject: efi: selftest: Make record static X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-favicon.png?a=commitdiff_plain;h=013f9f89f89045b77c4d1c92ea0875a46916095a;p=u-boot.git efi: selftest: Make record static record is only referenced in efi_selftest_exitbootservices.c Signed-off-by: Bin Meng --- 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,