arm: Update our 'ret' assembler macro slightly
authorTom Rini <trini@konsulko.com>
Thu, 2 Mar 2017 14:59:30 +0000 (09:59 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 17 Mar 2017 18:15:11 +0000 (14:15 -0400)
We only support cores that do Thumb-1 or later.  So we add a comment to
explain this and remove the architecture test.

Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Mans Rullgard <mans@mansr.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
arch/arm/include/asm/assembler.h

index c56daf2..d24be2d 100644 (file)
 #define PLD(code...)
 #endif
 
+/*
+ * We only support cores that support at least Thumb-1 and thus we use
+ * 'bx lr'
+ */
        .irp    c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt,gt,le,hs,lo
        .macro  ret\c, reg
-#if defined(__ARM_ARCH_5E__)
-       mov\c   pc, \reg
-#else
        .ifeqs  "\reg", "lr"
        bx\c    \reg
        .else
        mov\c   pc, \reg
        .endif
-#endif
        .endm
        .endr