From 113492988b0f471f9fe4f8f987a52c58a782d96f Mon Sep 17 00:00:00 2001 From: Daniel Schwierzeck Date: Sat, 19 Dec 2015 20:20:45 +0100 Subject: MIPS: fix annotation of _start and relocate_code Correctly annotate _start and relocate_code as functions to produce more readable disassembly code generated by objdump. Signed-off-by: Daniel Schwierzeck --- arch/mips/cpu/start.S | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'arch/mips/cpu/start.S') diff --git a/arch/mips/cpu/start.S b/arch/mips/cpu/start.S index 3b5b622abed..e95cdca61eb 100644 --- a/arch/mips/cpu/start.S +++ b/arch/mips/cpu/start.S @@ -56,9 +56,7 @@ .set noreorder - .globl _start - .text -_start: +ENTRY(_start) /* U-boot entry point */ b reset nop @@ -192,6 +190,8 @@ reset: jr t9 move ra, zero + END(_start) + /* * void relocate_code (addr_sp, gd, addr_moni) * @@ -202,9 +202,7 @@ reset: * a1 = gd * a2 = destination address */ - .globl relocate_code - .ent relocate_code -relocate_code: +ENTRY(relocate_code) move sp, a0 # set new stack pointer move fp, sp @@ -317,4 +315,4 @@ in_ram: jr t9 move ra, zero - .end relocate_code + END(relocate_code) -- cgit v1.2.3