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.4.92~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=891d583c403cbce091f6e759e3f9b411917638f6;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 Cc: Rui Xiang Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c index bdc3ea4e89fab..15d0328bed1af 100644 --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c @@ -990,3 +990,4 @@ efi_status_t efi_query_variable_store(u32 attributes, unsigned long size) return EFI_SUCCESS; } +EXPORT_SYMBOL_GPL(efi_query_variable_store);