From: Al Viro Date: Tue, 15 May 2007 19:37:00 +0000 (+0100) Subject: m32r: __xchg() should be always_inline X-Git-Tag: v2.6.22-rc2~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4e1ded3cf6e13c122f019532cb60347d6c88c8c;p=platform%2Fkernel%2Flinux-3.10.git m32r: __xchg() should be always_inline it depends on elimination of unreachable branches in switch (by object size), so we must declare it always_inline Signed-off-by: Al Viro Acked-by: Hirokazu Takata Signed-off-by: Linus Torvalds --- diff --git a/include/asm-m32r/system.h b/include/asm-m32r/system.h index b291b2f..8ee73d3 100644 --- a/include/asm-m32r/system.h +++ b/include/asm-m32r/system.h @@ -10,6 +10,7 @@ * Copyright (C) 2004, 2006 Hirokazu Takata */ +#include #include #ifdef __KERNEL__ @@ -154,7 +155,7 @@ extern void __xchg_called_with_bad_pointer(void); #define DCACHE_CLEAR(reg0, reg1, addr) #endif /* CONFIG_CHIP_M32700_TS1 */ -static inline unsigned long +static __always_inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) { unsigned long flags;