Re: [PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-09-05 Thread Leif Lindholm
On Mon, Sep 02, 2013 at 10:29:02AM +0100, Matt Fleming wrote: > This patch actually breaks git bisection, Urgh, sorry about that. > /home/build/git/efi/arch/x86/platform/efi/efi.c:581:19: error: conflicting > types for ‘efi_config_init’ > In file included from

Re: [PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-09-05 Thread Leif Lindholm
On Mon, Sep 02, 2013 at 10:29:02AM +0100, Matt Fleming wrote: This patch actually breaks git bisection, Urgh, sorry about that. /home/build/git/efi/arch/x86/platform/efi/efi.c:581:19: error: conflicting types for ‘efi_config_init’ In file included from

Re: [PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-09-02 Thread Matt Fleming
On Wed, 07 Aug, at 07:54:17PM, Leif Lindholm wrote: > Common to (U)EFI support on all platforms is the global "efi" data > structure, and the code that parses the System Table to locate > addresses to populate that structure with. > > This patch adds both of these to the global EFI driver code. >

Re: [PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-09-02 Thread Matt Fleming
On Wed, 07 Aug, at 07:54:17PM, Leif Lindholm wrote: Common to (U)EFI support on all platforms is the global efi data structure, and the code that parses the System Table to locate addresses to populate that structure with. This patch adds both of these to the global EFI driver code.

[PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-08-07 Thread Leif Lindholm
Common to (U)EFI support on all platforms is the global "efi" data structure, and the code that parses the System Table to locate addresses to populate that structure with. This patch adds both of these to the global EFI driver code. Signed-off-by: Leif Lindholm --- drivers/firmware/efi/efi.c

[PATCH v3 2/5] efi: provide a generic efi_config_init()

2013-08-07 Thread Leif Lindholm
Common to (U)EFI support on all platforms is the global efi data structure, and the code that parses the System Table to locate addresses to populate that structure with. This patch adds both of these to the global EFI driver code. Signed-off-by: Leif Lindholm leif.lindh...@linaro.org ---