diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-07-12 00:45:54 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-07-18 14:23:25 +0200 |
commit | 54e7fbd5adef2ca68d3e3723516651fc9f096d0b (patch) | |
tree | b5cbeb5033a95be4444e47ebfffd401f07273fbe /arch/mips/cpu | |
parent | 60a0559b7fe9bdb9433dc39c42e3e12c4363d63e (diff) | |
download | u-boot-54e7fbd5adef2ca68d3e3723516651fc9f096d0b.zip u-boot-54e7fbd5adef2ca68d3e3723516651fc9f096d0b.tar.gz u-boot-54e7fbd5adef2ca68d3e3723516651fc9f096d0b.tar.bz2 |
mips: start.S: remove dead code
Since commit 703ec9ddf965 ("MIPS: Stop building position independent code")
the relocation code was completely reworked and removed from start.S.
Remove some left-overs of the old code.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Tested-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/mips/cpu')
-rw-r--r-- | arch/mips/cpu/start.S | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/mips/cpu/start.S b/arch/mips/cpu/start.S index 6de9a2f..c3d1e64 100644 --- a/arch/mips/cpu/start.S +++ b/arch/mips/cpu/start.S @@ -17,19 +17,10 @@ #endif #ifdef CONFIG_32BIT -# define MIPS_RELOC 3 # define STATUS_SET 0 #endif #ifdef CONFIG_64BIT -# ifdef CONFIG_SYS_LITTLE_ENDIAN -# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \ - (((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym)) -# else -# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \ - ((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24) -# endif -# define MIPS_RELOC MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03) # define STATUS_SET ST0_KX #endif |