powerpc: mpc85xx: Drop _start symbol
authorPali Rohár <pali@kernel.org>
Mon, 25 Apr 2022 03:59:08 +0000 (09:29 +0530)
committerPriyanka Jain <priyanka.jain@nxp.com>
Tue, 26 Apr 2022 11:48:33 +0000 (17:18 +0530)
commit2dcf776ebcf7f224f2a2e6720e863aca493a5cd9
treefac98a2c750ea62ceadd915c48a85e227b6851e3
parent3b06577ab4eefd954348f1dc0f5abb3408d10d0c
powerpc: mpc85xx: Drop _start symbol

_start symbol contains only 32-bit data number 0x27051956 despite it is
marked as text section. This magic number is IH_MAGIC which is used for
marking uboot image header.

mpc85xx start.S code does not define valid uboot image header, so IH_MAGIC
number in _start symbol is useless there.

Moreover this _start symbol is not used at all. Entry point is at symbol
_start_e500.

So because this _start symbol is not used for anything, completely remove
it with IH_MAGIC number. After _start symbol was _start_cont symbol, so
replace all relative address calculations by _start_cont.

Signed-off-by: Pali Rohár <pali@kernel.org>
[Rebased]
Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
arch/powerpc/cpu/mpc85xx/start.S