diff options
author | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2008-04-17 14:35:13 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-18 07:47:29 (GMT) |
commit | 43c509254fab375c49936498da944658117ed07c (patch) | |
tree | 8b730dcbc1498dee9303af405099d32aaa3f79bb /cpu/mips/cache.S | |
parent | 7ce63709828d37b08866e537339a169bd0db2bd3 (diff) | |
download | u-boot-fsl-qoriq-43c509254fab375c49936498da944658117ed07c.tar.xz |
Use jr as register jump instruction
Current assembler codes are inconsistent in the way of register jump
instruction usage; some use jr, some use j. Of course GNU as allows both
usages, but as can be expected from `Jump Register' the mnemonic `jr' is
more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
at all.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Diffstat (limited to 'cpu/mips/cache.S')
-rw-r--r-- | cpu/mips/cache.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mips/cache.S b/cpu/mips/cache.S index 89ada71..f593968 100644 --- a/cpu/mips/cache.S +++ b/cpu/mips/cache.S @@ -282,7 +282,7 @@ LEAF(dcache_disable) and t0, t0, t1 ori t0, t0, CONF_CM_UNCACHED mtc0 t0, CP0_CONFIG - j ra + jr ra END(dcache_disable) #ifdef CFG_INIT_RAM_LOCK_MIPS @@ -308,7 +308,7 @@ mips_cache_lock: move a1, a2 icacheop(a0,a1,a2,a3,0x1d) - j ra + jr ra .end mips_cache_lock #endif /* CFG_INIT_RAM_LOCK_MIPS */ |