[PATCH -next] Fix "W" macro in unified.h
From: Alexey Dobriyan <hidden>
Date: 2009-09-05 21:02:43
From: Alexey Dobriyan <hidden>
Date: 2009-09-05 21:02:43
Please, fold into 0becb088501886f37ade38762c8eaaf4263572cc aka "Thumb-2: Add macros for the unified assembler syntax" otherwise: crypto/cast6.c:372:39: error: macro "W" passed 2 arguments, but takes just 1 Signed-off-by: Alexey Dobriyan <redacted> --- arch/arm/include/asm/unified.h | 4 ++++ 1 file changed, 4 insertions(+)
--- a/arch/arm/include/asm/unified.h
+++ b/arch/arm/include/asm/unified.h@@ -35,7 +35,9 @@ #define ARM(x...) #define THUMB(x...) x +#ifdef __ASSEMBLY__ #define W(instr) instr.w +#endif #define BSYM(sym) sym + 1 #else /* !CONFIG_THUMB2_KERNEL */
@@ -45,7 +47,9 @@ #define ARM(x...) x #define THUMB(x...) +#ifdef __ASSEMBLY__ #define W(instr) instr +#endif #define BSYM(sym) sym #endif /* CONFIG_THUMB2_KERNEL */