From: Sergey Vlasov Date: Tue, 16 Apr 2013 14:31:08 +0000 (+0400) Subject: x86/Kconfig: Make EFI select UCS2_STRING X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f6ce5002629e08eaa777ced3872a98f76845143e;p=linux-beck.git x86/Kconfig: Make EFI select UCS2_STRING The commit "efi: Distinguish between "remaining space" and actually used space" added usage of ucs2_*() functions to arch/x86/platform/efi/efi.c, but the only thing which selected UCS2_STRING was EFI_VARS, which is technically optional and can be built as a module. Signed-off-by: Sergey Vlasov Signed-off-by: Matt Fleming --- diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index a4f24f5b1218..01af8535f58e 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -1549,6 +1549,7 @@ config X86_SMAP config EFI bool "EFI runtime service support" depends on ACPI + select UCS2_STRING ---help--- This enables the kernel to use EFI runtime services that are available (such as the EFI variable services).