[U-Boot] [PATCH 1/2] doc: ARM: Use the right function name

Trivial fix.
Signed-off-by: Michal Simek michal.simek@xilinx.com ---
doc/README.arm-caches | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/README.arm-caches b/doc/README.arm-caches index f6a52e3e386c..dbb6190b95c0 100644 --- a/doc/README.arm-caches +++ b/doc/README.arm-caches @@ -47,7 +47,7 @@ Cleanup Before Linux: - cleanup_before_linux() should flush the D-cache, invalidate I-cache, and disable MMU and caches. - The following sequence is advisable while disabling d-cache: - 1. disable_dcache() - flushes and disables d-cache + 1. dcache_disable() - flushes and disables d-cache 2. invalidate_dcache_all() - invalid any entry that came to the cache in the short period after the cache was flushed but before the cache got disabled. -- 1.8.2.3

Signed-off-by: Michal Simek michal.simek@xilinx.com ---
arch/arm/cpu/armv8/cache.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/cpu/armv8/cache.S b/arch/arm/cpu/armv8/cache.S index 4b3ee6ed6fa5..9c6e8243bb4b 100644 --- a/arch/arm/cpu/armv8/cache.S +++ b/arch/arm/cpu/armv8/cache.S @@ -94,7 +94,7 @@ skip: b.gt loop_level
mov x0, #0 - msr csselr_el1, x0 /* resotre csselr_el1 */ + msr csselr_el1, x0 /* restore csselr_el1 */ dsb sy isb mov lr, x15 -- 1.8.2.3

On Wed, Jan 14, 2015 at 03:36:35PM +0100, Michal Simek wrote:
Signed-off-by: Michal Simek michal.simek@xilinx.com
Applied to u-boot/master, thanks!

On Wed, Jan 14, 2015 at 03:36:34PM +0100, Michal Simek wrote:
Trivial fix.
Signed-off-by: Michal Simek michal.simek@xilinx.com
Applied to u-boot/master, thanks!
participants (2)
-
Michal Simek
-
Tom Rini