diff options
author | Bin Meng | 2023-04-05 20:15:17 +0800 |
---|---|---|
committer | Heinrich Schuchardt | 2023-04-08 07:46:44 +0200 |
commit | ee23830b6ed20827c24e3ef775e6c75948a61b94 (patch) | |
tree | e1eeb1e3e887323c37c76356ea15eee8adfb9ce2 /include | |
parent | 8063c55e585c9fa17f4ae8faf638564949027871 (diff) |
efi: loader: Make efi_event_queue and efi_register_notify_events static
efi_event_queue and efi_register_notify_events are only referenced
in efi_boottime.c
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_loader.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 4b89b9816d4..b395eef9e79 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -513,9 +513,6 @@ struct efi_register_notify_event { struct list_head handles; }; -/* List of all events registered by RegisterProtocolNotify() */ -extern struct list_head efi_register_notify_events; - /* called at pre-initialization */ int efi_init_early(void); /* Initialize efi execution environment */ |