diff options
Diffstat (limited to 'arch/powerpc/include/asm/bug.h')
| -rw-r--r-- | arch/powerpc/include/asm/bug.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/include/asm/bug.h b/arch/powerpc/include/asm/bug.h index 2c15212e170..065c590c991 100644 --- a/arch/powerpc/include/asm/bug.h +++ b/arch/powerpc/include/asm/bug.h @@ -85,12 +85,12 @@  	}							\  } while (0) -#define __WARN() do {						\ +#define __WARN_TAINT(taint) do {				\  	__asm__ __volatile__(					\  		"1:	twi 31,0,0\n"				\  		_EMIT_BUG_ENTRY					\  		: : "i" (__FILE__), "i" (__LINE__),		\ -		  "i" (BUGFLAG_WARNING),			\ +		  "i" (BUGFLAG_TAINT(taint)),			\  		  "i" (sizeof(struct bug_entry)));		\  } while (0) @@ -104,7 +104,7 @@  		"1:	"PPC_TLNEI"	%4,0\n"			\  		_EMIT_BUG_ENTRY					\  		: : "i" (__FILE__), "i" (__LINE__),		\ -		  "i" (BUGFLAG_WARNING),			\ +		  "i" (BUGFLAG_TAINT(TAINT_WARN)),		\  		  "i" (sizeof(struct bug_entry)),		\  		  "r" (__ret_warn_on));				\  	}							\  |