From: Denis Efremov Date: Thu, 9 May 2013 10:36:53 +0000 (+0400) Subject: arch/tile: remove inline marking of EXPORT_SYMBOL functions X-Git-Tag: v3.10-rc1~26^2~1 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/4833d7f0a86fd9a44f98bedf0c639e1da070d3a0 arch/tile: remove inline marking of EXPORT_SYMBOL functions EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov Signed-off-by: Chris Metcalf --- diff --git a/arch/tile/lib/spinlock_32.c b/arch/tile/lib/spinlock_32.c index b16ac49a968e..b34f79aada48 100644 --- a/arch/tile/lib/spinlock_32.c +++ b/arch/tile/lib/spinlock_32.c @@ -101,7 +101,7 @@ EXPORT_SYMBOL(arch_spin_unlock_wait); * preserve the semantic that the same read lock can be acquired in an * interrupt context. */ -inline int arch_read_trylock(arch_rwlock_t *rwlock) +int arch_read_trylock(arch_rwlock_t *rwlock) { u32 val; __insn_mtspr(SPR_INTERRUPT_CRITICAL_SECTION, 1);