aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-05-09 03:53:22 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-06-10 20:16:29 -0400
commit2c4da1a78af5c50f3a866656fe223eb50b2a5ff0 (patch)
treed9f5ba46c0ac2d31d0a5ed4b0ecd61b9b0d26d9c
parentabba759796f9b73eb24df9b734dd063839fc62e0 (diff)
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 <yamada.masahiro@socionext.com>
-rw-r--r--arch/sh/include/asm/vmlinux.lds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/include/asm/vmlinux.lds.h b/arch/sh/include/asm/vmlinux.lds.h
index f312813f39d8..992955685874 100644
--- a/arch/sh/include/asm/vmlinux.lds.h
+++ b/arch/sh/include/asm/vmlinux.lds.h
@@ -7,9 +7,9 @@
7#ifdef CONFIG_DWARF_UNWINDER 7#ifdef CONFIG_DWARF_UNWINDER
8#define DWARF_EH_FRAME \ 8#define DWARF_EH_FRAME \
9 .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \ 9 .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \
10 VMLINUX_SYMBOL(__start_eh_frame) = .; \ 10 __start_eh_frame = .; \
11 *(.eh_frame) \ 11 *(.eh_frame) \
12 VMLINUX_SYMBOL(__stop_eh_frame) = .; \ 12 __stop_eh_frame = .; \
13 } 13 }
14#else 14#else
15#define DWARF_EH_FRAME 15#define DWARF_EH_FRAME