Skip to content

Commit 2c4da1a

Browse files
committed
sh: remove no-op macro VMLINUX_SYMBOL()
VMLINUX_SYMBOL() is no-op unless CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX is defined. It has ever been selected only by BLACKFIN and METAG. VMLINUX_SYMBOL() is unneeded for SuperH-specific code. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent abba759 commit 2c4da1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/sh/include/asm/vmlinux.lds.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#ifdef CONFIG_DWARF_UNWINDER
88
#define DWARF_EH_FRAME \
99
.eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \
10-
VMLINUX_SYMBOL(__start_eh_frame) = .; \
10+
__start_eh_frame = .; \
1111
*(.eh_frame) \
12-
VMLINUX_SYMBOL(__stop_eh_frame) = .; \
12+
__stop_eh_frame = .; \
1313
}
1414
#else
1515
#define DWARF_EH_FRAME

0 commit comments

Comments
 (0)