From: Bin Meng Date: Wed, 5 Apr 2023 12:15:15 +0000 (+0800) Subject: efi: selftest: Make record static X-Git-Tag: v2023.07-rc1~27^2~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=013f9f89f89045b77c4d1c92ea0875a46916095a;p=pandora-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 11b43fdd90b..b090ce74d23 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,