aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Burton <paul.burton@mips.com>2018-11-08 23:44:56 +0000
committerPaul Burton <paul.burton@mips.com>2018-11-12 14:26:21 -0800
commitd0894409d1711271cf5060e8ffe9e56359544d19 (patch)
tree00e5e4a437d97d04a93fedf5ece927bcdaf69eec
parentMIPS: Use Kconfig to select CPU_NO_EFFICIENT_FFS (diff)
downloadlinux-dev-d0894409d1711271cf5060e8ffe9e56359544d19.tar.xz
linux-dev-d0894409d1711271cf5060e8ffe9e56359544d19.zip
lib/gcd: Remove use of CPU_NO_EFFICIENT_FFS macro
The CPU_NO_EFFICIENT_FFS pre-processor macro is no longer used, with all architectures toggling the equivalent Kconfig symbol CONFIG_CPU_NO_EFFICIENT_FFS instead. Remove our check for the unused macro. Signed-off-by: Paul Burton <paul.burton@mips.com> Patchwork: https://patchwork.linux-mips.org/patch/21046/ Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Zhaoxiu Zeng <zhaoxiu.zeng@gmail.com> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org
-rw-r--r--lib/gcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gcd.c b/lib/gcd.c
index 227dea924425..7948ab27f0a4 100644
--- a/lib/gcd.c
+++ b/lib/gcd.c
@@ -10,7 +10,7 @@
* has decent hardware division.
*/
-#if !defined(CONFIG_CPU_NO_EFFICIENT_FFS) && !defined(CPU_NO_EFFICIENT_FFS)
+#if !defined(CONFIG_CPU_NO_EFFICIENT_FFS)
/* If __ffs is available, the even/odd algorithm benchmarks slower. */