Re: [PATCH] arm64/efi: fix variable 'si' set but not used

2019-08-05 Thread Dave Martin
On Tue, Jul 30, 2019 at 05:23:48PM -0400, Qian Cai wrote: > GCC throws out this warning on arm64. > > drivers/firmware/efi/libstub/arm-stub.c: In function 'efi_entry': > drivers/firmware/efi/libstub/arm-stub.c:132:22: warning: variable 'si' > set but not used [-Wunused-but-set-variable] > > Fix i

Re: "arm64: Silence gcc warnings about arch ABI drift" breaks clang

2019-06-07 Thread Dave Martin
On Fri, Jun 07, 2019 at 08:40:10AM -0700, Nathan Chancellor wrote: > On Fri, Jun 07, 2019 at 11:26:11AM -0400, Qian Cai wrote: > > On Fri, 2019-06-07 at 16:25 +0100, Will Deacon wrote: > > > On Fri, Jun 07, 2019 at 11:22:45AM -0400, Qian Cai wrote: > > > > The linux-next commit "arm64: Silence gcc

Re: [PATCH 15/16] Add EFI stub for ARM

2013-08-13 Thread Dave Martin
On Fri, Aug 09, 2013 at 04:26:16PM -0700, Roy Franz wrote: > This patch adds EFI stub support for the ARM Linux kernel. The EFI stub > operations similarly to the x86 stub: it is a shim between the EFI firmware > and the normal zImage entry point, and sets up the environment that the > zImage is e

Re: [PATCH 16/16] Add config EFI_STUB for ARM to Kconfig

2013-08-13 Thread Dave Martin
On Fri, Aug 09, 2013 at 04:26:17PM -0700, Roy Franz wrote: > Signed-off-by: Roy Franz > --- > arch/arm/Kconfig | 11 +++ > 1 file changed, 11 insertions(+) > > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig > index 43594d5..8607d03 100644 > --- a/arch/arm/Kconfig > +++ b/arch/arm/Kco

Re: [PATCH 16/17] Add EFI stub for ARM

2013-08-07 Thread Dave Martin
On Tue, Aug 06, 2013 at 08:45:12PM -0700, Roy Franz wrote: > This patch adds EFI stub support for the ARM Linux kernel. The EFI stub > operations similarly to the x86 stub: it is a shim between the EFI firmware > and the normal zImage entry point, and sets up the environment that the > zImage is e

Re: [PATCH 6/7] Add EFI stub for ARM

2013-08-05 Thread Dave Martin
On Fri, Aug 02, 2013 at 02:29:07PM -0700, Roy Franz wrote: > This patch adds EFI stub support for the ARM Linux kernel. The EFI stub > operations similarly to the x86 stub: it is a shim between the EFI firmware > and the normal zImage entry point, and sets up the environment that the > zImage is e

Re: [PATCH 1/7] EFI stub documentation updates

2013-08-05 Thread Dave Martin
On Fri, Aug 02, 2013 at 02:29:02PM -0700, Roy Franz wrote: > The ARM kernel also has an EFI stub which works largely the same way > as the x86 stub, so move the documentation out of x86 directory and > update to reflect that it is generic, and add ARM specific text. > > Signed-off-by: Roy Franz >