aboutsummaryrefslogtreecommitdiff
path: root/arch/arc
diff options
context:
space:
mode:
authorChen Gang <gang.chen.5i5j@gmail.com>2014-01-12 09:59:13 +0800
committerMichal Marek <mmarek@suse.cz>2014-01-27 21:45:29 +0100
commit9df62f054406992ce41ec4558fca6a0fa56fffeb (patch)
treed3e24b768c79e1daefefc635bd01e13226699327 /arch/arc
parente36aaea28972c57a32a3ba5365e61633739719b9 (diff)
arch: use ASM_NL instead of ';' for assembler new line character in the macro
For some assemblers, they use another character as newline in a macro (e.g. arc uses '`'), so for generic assembly code, need use ASM_NL (a macro) instead of ';' for it. Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com> Acked-by: Vineet Gupta <vgupta@synopsys.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/arc')
-rw-r--r--arch/arc/include/asm/linkage.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arc/include/asm/linkage.h b/arch/arc/include/asm/linkage.h
index 0283e9e44e0d..66ee5527aefc 100644
--- a/arch/arc/include/asm/linkage.h
+++ b/arch/arc/include/asm/linkage.h
@@ -11,6 +11,8 @@
#ifdef __ASSEMBLY__
+#define ASM_NL ` /* use '`' to mark new line in macro */
+
/* Can't use the ENTRY macro in linux/linkage.h
* gas considers ';' as comment vs. newline
*/