diff options
author | Pierre-Clément Tosi | 2021-11-10 15:04:40 +0100 |
---|---|---|
committer | Tom Rini | 2021-11-15 14:33:32 -0500 |
commit | 38de2bad642ad3032e56fcad3b21f12bd609a294 (patch) | |
tree | 8414eb403c98b782f4841bae7f6db847738aacbb /arch | |
parent | 4d492b0c0f2238b22c5561437b1a519b3781f1fd (diff) |
arm: Fix bad memcpy.S str8w macro argument count
Remove the extra (empty) argument passed to str8w, causing the following
error:
<instantiation>:40:47: error: too many positional arguments
str8w r0, r3, r4, r5, r6, r7, r8, r9, ip, , abort=19f
^
u-boot/arch/arm/lib/memcpy.S:240:5: note: while in macro instantiation
17: forward_copy_shift pull=16 push=16
^
Note: no functional change intended.
Fixes: d8834a1323af ("arm: Use optimized memcpy and memset from linux")
Signed-off-by: Pierre-Clément Tosi <ptosi@google.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/lib/memcpy.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/memcpy.S b/arch/arm/lib/memcpy.S index f7fb77235cd..eee7a219ce3 100644 --- a/arch/arm/lib/memcpy.S +++ b/arch/arm/lib/memcpy.S @@ -210,7 +210,7 @@ ENTRY(memcpy) orr r9, r9, ip, lspush #\push mov ip, ip, lspull #\pull orr ip, ip, lr, lspush #\push - str8w r0, r3, r4, r5, r6, r7, r8, r9, ip, , abort=19f + str8w r0, r3, r4, r5, r6, r7, r8, r9, ip, abort=19f bge 12b PLD( cmn r2, #96 ) PLD( bge 13b ) |