Commit 2e555f8d authored by Jiang Liu's avatar Jiang Liu Committed by Linus Torvalds

avr32: normalize global variables exported by vmlinux.lds

Normalize global variables exported by vmlinux.lds to conform usage
guidelines from include/asm-generic/sections.h.

Use _text to mark the start of the kernel image including the head text,
and _stext to mark the start of the .text section.
Signed-off-by: default avatarJiang Liu <jiang.liu@huawei.com>
Acked-by: default avatarHans-Christian Egtvedt <egtvedt@samfundet.no>
Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1622d1ab
...@@ -555,7 +555,7 @@ void __init setup_arch (char **cmdline_p) ...@@ -555,7 +555,7 @@ void __init setup_arch (char **cmdline_p)
{ {
struct clk *cpu_clk; struct clk *cpu_clk;
init_mm.start_code = (unsigned long)_text; init_mm.start_code = (unsigned long)_stext;
init_mm.end_code = (unsigned long)_etext; init_mm.end_code = (unsigned long)_etext;
init_mm.end_data = (unsigned long)_edata; init_mm.end_data = (unsigned long)_edata;
init_mm.brk = (unsigned long)_end; init_mm.brk = (unsigned long)_end;
......
...@@ -23,7 +23,7 @@ SECTIONS ...@@ -23,7 +23,7 @@ SECTIONS
{ {
. = CONFIG_ENTRY_ADDRESS; . = CONFIG_ENTRY_ADDRESS;
.init : AT(ADDR(.init) - LOAD_OFFSET) { .init : AT(ADDR(.init) - LOAD_OFFSET) {
_stext = .; _text = .;
__init_begin = .; __init_begin = .;
_sinittext = .; _sinittext = .;
*(.text.reset) *(.text.reset)
...@@ -46,7 +46,7 @@ SECTIONS ...@@ -46,7 +46,7 @@ SECTIONS
.text : AT(ADDR(.text) - LOAD_OFFSET) { .text : AT(ADDR(.text) - LOAD_OFFSET) {
_evba = .; _evba = .;
_text = .; _stext = .;
*(.ex.text) *(.ex.text)
*(.irq.text) *(.irq.text)
KPROBES_TEXT KPROBES_TEXT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment