Re: [PATCH tip/efi-kexec] x86: setup.c build fix

2014-01-03 Thread Matt Fleming
On Fri, 03 Jan, at 02:24:28PM, H. Peter Anvin wrote: > > Something I should be pulling? Yep, I'll be sending the pull request momentarily. -- Matt Fleming, Intel Open Source Technology Center -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

Re: [PATCH tip/efi-kexec] x86: setup.c build fix

2014-01-03 Thread H. Peter Anvin
On 01/03/2014 06:40 AM, Matt Fleming wrote: > On Fri, 03 Jan, at 11:56:49AM, Dave Young wrote: >> In case without CONFIG_EFI, there will be below build error: >>arch/x86/built-in.o: In function `setup_arch': (.init.text+0x9dc): undefined reference to `parse_efi_setup' >> >> Thus fix it by

Re: [PATCH tip/efi-kexec] x86: setup.c build fix

2014-01-03 Thread Matt Fleming
On Fri, 03 Jan, at 11:56:49AM, Dave Young wrote: > In case without CONFIG_EFI, there will be below build error: >arch/x86/built-in.o: In function `setup_arch': > >> (.init.text+0x9dc): undefined reference to `parse_efi_setup' > > Thus fix it by adding blank inline function in asm/efi.h > Also

[PATCH tip/efi-kexec] x86: setup.c build fix

2014-01-02 Thread Dave Young
In case without CONFIG_EFI, there will be below build error: arch/x86/built-in.o: In function `setup_arch': >> (.init.text+0x9dc): undefined reference to `parse_efi_setup' Thus fix it by adding blank inline function in asm/efi.h Also remove an unused declaration for variable efi_data_len. Sign