[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20180509083222.GC3698@osiris>
Date: Wed, 9 May 2018 10:32:22 +0200
From: Heiko Carstens <heiko.carstens@...ibm.com>
To: Masahiro Yamada <yamada.masahiro@...ionext.com>
Cc: Martin Schwidefsky <schwidefsky@...ibm.com>,
linux-s390@...r.kernel.org,
linux-arch <linux-arch@...r.kernel.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] s390: remove no-op macro VMLINUX_SYMBOL()
On Wed, May 09, 2018 at 04:51:39PM +0900, Masahiro Yamada wrote:
> 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 s390-specific code.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@...ionext.com>
> ---
>
> arch/s390/kernel/vmlinux.lds.S | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S
> index 08d12cf..f0414f5 100644
> --- a/arch/s390/kernel/vmlinux.lds.S
> +++ b/arch/s390/kernel/vmlinux.lds.S
> @@ -82,10 +82,10 @@ SECTIONS
>
> . = ALIGN(PAGE_SIZE);
> .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
> - VMLINUX_SYMBOL(_sinittext) = . ;
> + _sinittext = .;
> INIT_TEXT
> . = ALIGN(PAGE_SIZE);
> - VMLINUX_SYMBOL(_einittext) = . ;
> + _einittext = .;
Applied, thanks.
Powered by blists - more mailing lists