aboutsummaryrefslogtreecommitdiff
path: root/lib/efi_loader/efi_variable.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-06-20 13:52:16 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2019-07-06 21:25:32 +0200
commit88192098d160aff42c08a9e4edc746a55d199232 (patch)
treef28230fbe3f1be95f38ce8065db2d1adc403f528 /lib/efi_loader/efi_variable.c
parentce43528d6a9ff3d1099a6bc194f0cccc8f0df44d (diff)
downloadu-boot-88192098d160aff42c08a9e4edc746a55d199232.zip
u-boot-88192098d160aff42c08a9e4edc746a55d199232.tar.gz
u-boot-88192098d160aff42c08a9e4edc746a55d199232.tar.bz2
efi_loader: initialization of variable services
Provide an initialization routine for variable services. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader/efi_variable.c')
-rw-r--r--lib/efi_loader/efi_variable.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c
index f71dc29..6210425 100644
--- a/lib/efi_loader/efi_variable.c
+++ b/lib/efi_loader/efi_variable.c
@@ -547,3 +547,13 @@ efi_status_t __efi_runtime EFIAPI efi_query_variable_info(
{
return EFI_UNSUPPORTED;
}
+
+/**
+ * efi_init_variables() - initialize variable services
+ *
+ * Return: status code
+ */
+efi_status_t efi_init_variables(void)
+{
+ return EFI_SUCCESS;
+}