]> git.baikalelectronics.ru Git - uboot.git/commit
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)
commit192c92fea36dae509567d38fc595281f4b8adff2
treefac98a2c750ea62ceadd915c48a85e227b6851e3
parentc708c3d179f5f687544fc115a35ccb6200b9c319
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