diff options
Diffstat (limited to 'arch/sh/include/asm/bug.h')
| -rw-r--r-- | arch/sh/include/asm/bug.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/sh/include/asm/bug.h b/arch/sh/include/asm/bug.h index c9828f785ca0..05a485c4fabc 100644 --- a/arch/sh/include/asm/bug.h +++ b/arch/sh/include/asm/bug.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0 */  #ifndef __ASM_SH_BUG_H  #define __ASM_SH_BUG_H @@ -24,14 +25,14 @@   */  #ifdef CONFIG_DEBUG_BUGVERBOSE  #define _EMIT_BUG_ENTRY				\ -	"\t.pushsection __bug_table,\"a\"\n"	\ +	"\t.pushsection __bug_table,\"aw\"\n"	\  	"2:\t.long 1b, %O1\n"			\  	"\t.short %O2, %O3\n"			\  	"\t.org 2b+%O4\n"			\  	"\t.popsection\n"  #else  #define _EMIT_BUG_ENTRY				\ -	"\t.pushsection __bug_table,\"a\"\n"	\ +	"\t.pushsection __bug_table,\"aw\"\n"	\  	"2:\t.long 1b\n"			\  	"\t.short %O3\n"			\  	"\t.org 2b+%O4\n"			\ |