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: Jiang Liu <jiang.liu@huawei.com>
Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
 {
        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_data = (unsigned long)_edata;
        init_mm.brk = (unsigned long)_end;
 
 {
        . = CONFIG_ENTRY_ADDRESS;
        .init           : AT(ADDR(.init) - LOAD_OFFSET) {
-               _stext = .;
+               _text = .;
                __init_begin = .;
                        _sinittext = .;
                        *(.text.reset)
 
        .text           : AT(ADDR(.text) - LOAD_OFFSET) {
                _evba = .;
-               _text = .;
+               _stext = .;
                *(.ex.text)
                *(.irq.text)
                KPROBES_TEXT