[PATCH 03/11] ARC: atomic: !LLSC: use int data type consistently

From: Vineet Gupta
Date: Wed Aug 04 2021 - 15:16:10 EST


Signed-off-by: Vineet Gupta <vgupta@xxxxxxxxxxxx>
---
arch/arc/include/asm/atomic-spinlock.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arc/include/asm/atomic-spinlock.h b/arch/arc/include/asm/atomic-spinlock.h
index 8c6fd0e651e5..2c830347bfb4 100644
--- a/arch/arc/include/asm/atomic-spinlock.h
+++ b/arch/arc/include/asm/atomic-spinlock.h
@@ -42,7 +42,7 @@ static inline void arch_atomic_##op(int i, atomic_t *v) \
static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
{ \
unsigned long flags; \
- unsigned long temp; \
+ unsigned int temp; \
\
/* \
* spin lock/unlock provides the needed smp_mb() before/after \
@@ -60,7 +60,7 @@ static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
static inline int arch_atomic_fetch_##op(int i, atomic_t *v) \
{ \
unsigned long flags; \
- unsigned long orig; \
+ unsigned int orig; \
\
/* \
* spin lock/unlock provides the needed smp_mb() before/after \
--
2.25.1