diff mbox series

sh: remove no-op macro VMLINUX_SYMBOL()

Message ID 1525852402-29269-1-git-send-email-yamada.masahiro@socionext.com
State Accepted
Commit 2c4da1a78af5c50f3a866656fe223eb50b2a5ff0
Headers show
Series sh: remove no-op macro VMLINUX_SYMBOL() | expand

Commit Message

Masahiro Yamada May 9, 2018, 7:53 a.m. UTC
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>

---

 arch/sh/include/asm/vmlinux.lds.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.7.4

Comments

Masahiro Yamada June 13, 2018, 2:31 p.m. UTC | #1
2018-05-09 16:53 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> 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>

> ---




For information for SH maintainers just in case.

I already picked up this patch to my Kbuild tree.

Thanks.



>  arch/sh/include/asm/vmlinux.lds.h | 4 ++--

>  1 file changed, 2 insertions(+), 2 deletions(-)

>

> diff --git a/arch/sh/include/asm/vmlinux.lds.h b/arch/sh/include/asm/vmlinux.lds.h

> index f312813..9929556 100644

> --- a/arch/sh/include/asm/vmlinux.lds.h

> +++ b/arch/sh/include/asm/vmlinux.lds.h

> @@ -7,9 +7,9 @@

>  #ifdef CONFIG_DWARF_UNWINDER

>  #define DWARF_EH_FRAME                                                 \

>         .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) {                 \

> -                 VMLINUX_SYMBOL(__start_eh_frame) = .;                 \

> +                 __start_eh_frame = .;                                 \

>                   *(.eh_frame)                                          \

> -                 VMLINUX_SYMBOL(__stop_eh_frame) = .;                  \

> +                 __stop_eh_frame = .;                                  \

>         }

>  #else

>  #define DWARF_EH_FRAME

> --

> 2.7.4

>




-- 
Best Regards
Masahiro Yamada
diff mbox series

Patch

diff --git a/arch/sh/include/asm/vmlinux.lds.h b/arch/sh/include/asm/vmlinux.lds.h
index f312813..9929556 100644
--- a/arch/sh/include/asm/vmlinux.lds.h
+++ b/arch/sh/include/asm/vmlinux.lds.h
@@ -7,9 +7,9 @@ 
 #ifdef CONFIG_DWARF_UNWINDER
 #define DWARF_EH_FRAME							\
 	.eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) {			\
-		  VMLINUX_SYMBOL(__start_eh_frame) = .;			\
+		  __start_eh_frame = .;					\
 		  *(.eh_frame)						\
-		  VMLINUX_SYMBOL(__stop_eh_frame) = .;			\
+		  __stop_eh_frame = .;					\
 	}
 #else
 #define DWARF_EH_FRAME