diff options
author | Bin Meng <bmeng@tinylab.org> | 2023-04-05 20:15:15 +0800 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-04-08 07:46:44 +0200 |
commit | 013f9f89f89045b77c4d1c92ea0875a46916095a (patch) | |
tree | 090658ad54e95f0144875887cbebefea8bc6985a /lib/efi_selftest | |
parent | 199675b9d54c9be682e98b4835d22da98c0b11e3 (diff) | |
download | u-boot-013f9f89f89045b77c4d1c92ea0875a46916095a.tar.gz u-boot-013f9f89f89045b77c4d1c92ea0875a46916095a.tar.bz2 u-boot-013f9f89f89045b77c4d1c92ea0875a46916095a.zip |
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.c | 2 |
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, |