diff options
author | Pali Rohár | 2022-04-03 00:05:09 +0200 |
---|---|---|
committer | Priyanka Jain | 2022-04-26 17:18:39 +0530 |
commit | de14a5a95c14b0a5349c430ea35b8b07975f7ce5 (patch) | |
tree | 2a93560f8407103552c84168bedf5c35b4786795 /arch/powerpc/cpu/mpc85xx/start.S | |
parent | 2dcf776ebcf7f224f2a2e6720e863aca493a5cd9 (diff) |
powerpc: mpc85xx: Rename _start_e500 symbol to _start
The real entry point is _start_e500. There is no _start symbol at all. So
rename _start_e500 to _start for convension that _start symbol is used as
entry point.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/start.S')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/start.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/start.S b/arch/powerpc/cpu/mpc85xx/start.S index 07e855e89b4..2b2ad973599 100644 --- a/arch/powerpc/cpu/mpc85xx/start.S +++ b/arch/powerpc/cpu/mpc85xx/start.S @@ -70,9 +70,9 @@ */ .section .bootpg,"ax" - .globl _start_e500 + .globl _start -_start_e500: +_start: /* Enable debug exception */ li r1,MSR_DE mtmsr r1 |