2019-04-08 13:07:20

by Eugeniy Paltsev

[permalink] [raw]
Subject: [PATCH] ARC: memset: fix build with L1_CACHE_SHIFT != 6

In case of 'L1_CACHE_SHIFT != 6' we define dummy assembly macroses
PREALLOC_INSTR and PREFETCHW_INSTR without arguments. However
we pass arguments to them in code which cause build errors.
Fix that.

Signed-off-by: Eugeniy Paltsev <[email protected]>
---
arch/arc/lib/memset-archs.S | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arc/lib/memset-archs.S b/arch/arc/lib/memset-archs.S
index f230bb7092fd..b3373f5c88e0 100644
--- a/arch/arc/lib/memset-archs.S
+++ b/arch/arc/lib/memset-archs.S
@@ -30,10 +30,10 @@

#else

-.macro PREALLOC_INSTR
+.macro PREALLOC_INSTR reg, off
.endm

-.macro PREFETCHW_INSTR
+.macro PREFETCHW_INSTR reg, off
.endm

#endif
--
2.14.5