Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH] MIPS: asm: Use __ASSEMBLY__ to guard some macros to avoid build error
@ 2020-05-07  5:54 Huacai Chen
  2020-05-07  6:13 ` WANG Xuerui
  2020-05-07  8:35 ` Thomas Bogendoerfer
  0 siblings, 2 replies; 5+ messages in thread
From: Huacai Chen @ 2020-05-07  5:54 UTC (permalink / raw)
  To: Thomas Bogendoerfer
  Cc: linux-mips, Fuxin Zhang, Zhangjin Wu, Huacai Chen, Jiaxun Yang,
	Huacai Chen

Use __ASSEMBLY__ to guard definitions of some macros (PANIC and PRINT)
to avoid build error:

1, PANIC conflicts with drivers/scsi/smartpqi/smartpqi_init.c
2, PRINT conflicts with net/netfilter/nf_conntrack_h323_asn1.c and net/
   mac80211/debugfs_sta.c

Fixes: d339cd02b888eb8c ("MIPS: Move unaligned load/store helpers to inst.h")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Huacai Chen <chenhc@lemote.com>
---
 arch/mips/include/asm/asm.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/mips/include/asm/asm.h b/arch/mips/include/asm/asm.h
index 934465d..b01762ab 100644
--- a/arch/mips/include/asm/asm.h
+++ b/arch/mips/include/asm/asm.h
@@ -74,6 +74,8 @@ symbol:		.insn
 		.globl	symbol;				\
 symbol		=	value
 
+#ifdef __ASSEMBLY__
+
 #define PANIC(msg)					\
 		.set	push;				\
 		.set	reorder;			\
@@ -98,6 +100,8 @@ symbol		=	value
 #define PRINT(string)
 #endif
 
+#endif
+
 #define TEXT(msg)					\
 		.pushsection .data;			\
 8:		.asciiz msg;				\
-- 
2.7.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-05-07  9:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-07  5:54 [PATCH] MIPS: asm: Use __ASSEMBLY__ to guard some macros to avoid build error Huacai Chen
2020-05-07  6:13 ` WANG Xuerui
2020-05-07  6:47   ` Huacai Chen
2020-05-07  8:35 ` Thomas Bogendoerfer
2020-05-07  9:55   ` Huacai Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox