From: Sergey Vlasov Date: Tue, 16 Apr 2013 14:31:09 +0000 (+0400) Subject: efi: Export efi_query_variable_store() for efivars.ko X-Git-Tag: v3.2.46~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5ba30a73ebcca1b4068363ca08410fa3729ebeb;p=thirdparty%2Fkernel%2Fstable.git efi: Export efi_query_variable_store() for efivars.ko commit 3668011d4ad556224f7c012c1e870a6eaa0e59da upstream. Fixes build with CONFIG_EFI_VARS=m which was broken after the commit "x86, efivars: firmware bug workarounds should be in platform code". Signed-off-by: Sergey Vlasov Signed-off-by: Matt Fleming Signed-off-by: Ben Hutchings --- diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c index b20bb92a115c7..a20b5b3848377 100644 --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c @@ -840,3 +840,4 @@ efi_status_t efi_query_variable_store(u32 attributes, unsigned long size) return EFI_SUCCESS; } +EXPORT_SYMBOL_GPL(efi_query_variable_store);