summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Braha <julianbraha@gmail.com>2022-01-17 05:09:40 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-03-23 09:10:41 +0100
commitd00275fb39a7b0b5912d2365e7acaaee734ae58c (patch)
treef44c29282f18e5811dfbc5796a30e00ff14a35e4
parent56eaacb8137ba2071ce48d4e3d91979270e139a7 (diff)
downloadlinux-stable-d00275fb39a7b0b5912d2365e7acaaee734ae58c.tar.gz
linux-stable-d00275fb39a7b0b5912d2365e7acaaee734ae58c.tar.bz2
linux-stable-d00275fb39a7b0b5912d2365e7acaaee734ae58c.zip
ARM: 9178/1: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE
[ Upstream commit 11c57c3ba94da74c3446924260e34e0b1950b5d7 ] Resending this to properly add it to the patch tracker - thanks for letting me know, Arnd :) When ARM is enabled, and BITREVERSE is disabled, Kbuild gives the following warning: WARNING: unmet direct dependencies detected for HAVE_ARCH_BITREVERSE Depends on [n]: BITREVERSE [=n] Selected by [y]: - ARM [=y] && (CPU_32v7M [=n] || CPU_32v7 [=y]) && !CPU_32v6 [=n] This is because ARM selects HAVE_ARCH_BITREVERSE without selecting BITREVERSE, despite HAVE_ARCH_BITREVERSE depending on BITREVERSE. This unmet dependency bug was found by Kismet, a static analysis tool for Kconfig. Please advise if this is not the appropriate solution. Signed-off-by: Julian Braha <julianbraha@gmail.com> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--lib/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index a3928d4438b5..714ec2f50bb1 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -16,7 +16,6 @@ config BITREVERSE
config HAVE_ARCH_BITREVERSE
bool
default n
- depends on BITREVERSE
help
This option enables the use of hardware bit-reversal instructions on
architectures which support such operations.