From mboxrd@z Thu Jan 1 00:00:00 1970 From: Will Deacon Subject: [PATCH 09/14] mips: locks: remove redundant arch_*_relax operations Date: Tue, 12 Nov 2013 16:47:47 +0000 Message-ID: <1384274872-26849-9-git-send-email-will.deacon@arm.com> References: <1384274872-26849-1-git-send-email-will.deacon@arm.com> Return-path: Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:40242 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753073Ab3KLQsQ (ORCPT ); Tue, 12 Nov 2013 11:48:16 -0500 In-Reply-To: <1384274872-26849-1-git-send-email-will.deacon@arm.com> Sender: linux-arch-owner@vger.kernel.org List-ID: To: akpm@linux-foundation.org Cc: linux-arch@vger.kernel.org, Will Deacon , Ralf Baechle Now that the arch_{spin,read,write}_relax macros default to cpu_relax(), remove the redundant definitions for MIPS. Cc: Ralf Baechle Acked-by: David Daney Signed-off-by: Will Deacon --- arch/mips/include/asm/spinlock.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/mips/include/asm/spinlock.h b/arch/mips/include/asm/spinlock.h index 78d201fb6c87..7bd850a15302 100644 --- a/arch/mips/include/asm/spinlock.h +++ b/arch/mips/include/asm/spinlock.h @@ -419,8 +419,4 @@ static inline int arch_write_trylock(arch_rwlock_t *rw) #define arch_read_lock_flags(lock, flags) arch_read_lock(lock) #define arch_write_lock_flags(lock, flags) arch_write_lock(lock) -#define arch_spin_relax(lock) cpu_relax() -#define arch_read_relax(lock) cpu_relax() -#define arch_write_relax(lock) cpu_relax() - #endif /* _ASM_SPINLOCK_H */ -- 1.8.2.2