diff options
author | Heinrich Schuchardt | 2023-02-10 09:06:17 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2023-02-10 13:05:40 +0100 |
commit | 124725732fdfd63ebb2f6514c690181ccbe13444 (patch) | |
tree | 9c4e403ac79cd76327fd74566e3309c6c9cb2189 /lib/efi_loader | |
parent | f28c4b22228e465c3d2535728dd40ce2ff5095fa (diff) |
efi_loader: static efi_query_variable_info_runtime()
This function is not used externally and hence should be static.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r-- | lib/efi_loader/efi_variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index 4d4dfa6b15e..4c85cfa607e 100644 --- a/lib/efi_loader/efi_variable.c +++ b/lib/efi_loader/efi_variable.c @@ -395,7 +395,7 @@ efi_status_t efi_query_variable_info_int(u32 attributes, * selected type * Returns: status code */ -efi_status_t __efi_runtime EFIAPI efi_query_variable_info_runtime( +static efi_status_t __efi_runtime EFIAPI efi_query_variable_info_runtime( u32 attributes, u64 *maximum_variable_storage_size, u64 *remaining_variable_storage_size, |