On Thu, Dec 02, 2021 at 09:01:10AM +0100, Ahmad Fatoum wrote: > On 02.12.21 08:42, Ahmad Fatoum wrote: > > This makes it possible to use for static initialization, like done in a > > follow-up commit. > > > > Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> > > --- > > arch/arm/include/asm/barebox-arm.h | 13 ++++++------- > > 1 file changed, 6 insertions(+), 7 deletions(-) > > > > diff --git a/arch/arm/include/asm/barebox-arm.h b/arch/arm/include/asm/barebox-arm.h > > index d70de6d5e6e6..0481d3391c26 100644 > > --- a/arch/arm/include/asm/barebox-arm.h > > +++ b/arch/arm/include/asm/barebox-arm.h > > @@ -97,14 +97,13 @@ static inline void arm_fixup_vectors(void) > > > > void *barebox_arm_boot_dtb(void); > > > > -static inline unsigned long arm_mem_stack_top(unsigned long membase, > > - unsigned long endmem) > > -{ > > - if (IS_ENABLED(CONFIG_BOOTM_OPTEE) || IS_ENABLED(CONFIG_PBL_OPTEE)) > > - endmem -= OPTEE_SIZE; > > +#define __arm_mem_stack_top(membase, endmem) ((endmem) - SZ_64K) > > > > - return endmem - SZ_64K; > > -} > > +#if defined(CONFIG_BOOTM_OPTEE) || defined(CONFIG_PBL_OPTEE) > > +#define arm_mem_stack_top(membase, endmem) (__arm_mem_stack_top(membase, endmem) - OPTEE_SIZE) > > +#else > > +#define arm_mem_stack_top(membase, endmem) (__arm_mem_stack_top(membase, endmem) - OPTEE_SIZE) > > Argh. Should have looked more closely before sending out. I'll respin later, > but looking forward to feedback in the mean time. Apart from this error this series looks good to me (at least in the range of how good such a preprocessor/assembly wasteland can look). Sascha -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox