[PATCH] ARM: Exynos: Fix build error with thumb2

2015-03-16 Thread Andrey Konovalov
Add non-global symbols to avoid build failure in thumb2 mode. Exact the same issue and the fix as in [1]; just the variables are different. [1] http://lists.linaro.org/pipermail/linaro-kernel/2014-June/015227.html Signed-off-by: Andrey Konovalov --- arch/arm/mach-exynos/sleep.S | 6 -- 1

Re: [PATCH] ARM: Exynos : Fix build error with thumb2

2014-06-11 Thread Kukjin Kim
On 06/04/14 17:07, Santosh Shukla wrote: On 2 June 2014 15:40, Dave Martin wrote: On Mon, May 26, 2014 at 09:23:45PM +0530, Santosh Shukla wrote: From: santosh shukla Add non-global symbol .LLl2x0_regs_phys to avoid build break in thumb2 mode. IIUC, arm assembler fail to load value of "globa

Re: [PATCH] ARM: Exynos : Fix build error with thumb2

2014-06-04 Thread Santosh Shukla
On 2 June 2014 15:40, Dave Martin wrote: > On Mon, May 26, 2014 at 09:23:45PM +0530, Santosh Shukla wrote: >> From: santosh shukla >> >> Add non-global symbol .LLl2x0_regs_phys to avoid build break in thumb2 mode. >> >> IIUC, arm assembler fail to load value of "global" variable >> l2xo_regs_phys

Re: [PATCH] ARM: Exynos : Fix build error with thumb2

2014-06-02 Thread Dave Martin
On Mon, May 26, 2014 at 09:23:45PM +0530, Santosh Shukla wrote: > From: santosh shukla > > Add non-global symbol .LLl2x0_regs_phys to avoid build break in thumb2 mode. > > IIUC, arm assembler fail to load value of "global" variable > l2xo_regs_phys for thum2 mode and wrapping it in non-global sy

Re: [PATCH] ARM: Exynos : Fix build error with thumb2

2014-05-28 Thread Santosh Shukla
ping! On 26 May 2014 21:23, Santosh Shukla wrote: > From: santosh shukla > > Add non-global symbol .LLl2x0_regs_phys to avoid build break in thumb2 mode. > > IIUC, arm assembler fail to load value of "global" variable > l2xo_regs_phys for thum2 mode and wrapping it in non-global symbol like > .L

[PATCH] ARM: Exynos : Fix build error with thumb2

2014-05-26 Thread Santosh Shukla
From: santosh shukla Add non-global symbol .LLl2x0_regs_phys to avoid build break in thumb2 mode. IIUC, arm assembler fail to load value of "global" variable l2xo_regs_phys for thum2 mode and wrapping it in non-global symbol like .Ll2x0_regs_phys solves the build break issue. arch/arm/mach-exyn