Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8af42949 authored by Stafford Horne's avatar Stafford Horne
Browse files

openrisc: xchg: fix `computed is not used` warning



When building allmodconfig this warning shows.

  fs/ocfs2/file.c: In function 'ocfs2_file_write_iter':
  ./arch/openrisc/include/asm/cmpxchg.h:81:3: warning: value computed is
  not used [-Wunused-value]
    ((typeof(*(ptr)))__xchg((unsigned long)(with), (ptr), sizeof(*(ptr))))
     ^

Applying the same patch logic that was done to the cmpxchg macro.

Signed-off-by: default avatarStafford Horne <shorne@gmail.com>
parent 4495c08e
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -78,6 +78,10 @@ static inline unsigned long __xchg(unsigned long val, volatile void *ptr,
}

#define xchg(ptr, with) 						\
	((typeof(*(ptr)))__xchg((unsigned long)(with), (ptr), sizeof(*(ptr))))
	({								\
		(__typeof__(*(ptr))) __xchg((unsigned long)(with),	\
					    (ptr),			\
					    sizeof(*(ptr)));		\
	})

#endif /* __ASM_OPENRISC_CMPXCHG_H */