diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-07-20 17:19:17 +0300 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-07-20 17:27:35 +0300 |
commit | 21481f2cfef9a79d3676916ef9424b1a7794776c (patch) | |
tree | c7ce47b5d441c902a025191864f919cb82454b53 /arch/arc/lib | |
parent | d05a76ab4d9ece9bd987a8c29e3f384ec9f7b211 (diff) | |
download | linux-21481f2cfef9a79d3676916ef9424b1a7794776c.tar.xz |
ARCv2: lib: memcpy: Missing PREFETCHW
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/lib')
-rw-r--r-- | arch/arc/lib/memcpy-archs.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/lib/memcpy-archs.S b/arch/arc/lib/memcpy-archs.S index 1b2b3acfed52..0cab0b8a57c5 100644 --- a/arch/arc/lib/memcpy-archs.S +++ b/arch/arc/lib/memcpy-archs.S @@ -206,7 +206,7 @@ unalignedOffby3: ld.ab r6, [r1, 4] prefetch [r1, 28] ;Prefetch the next read location ld.ab r8, [r1,4] - prefetch [r3, 32] ;Prefetch the next write location + prefetchw [r3, 32] ;Prefetch the next write location SHIFT_1 (r7, r6, 8) or r7, r7, r5 |