diff options
author | Christoph Jaeger <cj@linux.com> | 2015-02-16 16:00:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-16 17:56:05 -0800 |
commit | 841c009007144bed9b46643e2e0c4ba6821a2299 (patch) | |
tree | 3213606ab215928714f8b944eff89f5f11fe4099 /lib/Kconfig | |
parent | 780fc5642f59b6c6e2b05794de60b2d2ad5f040e (diff) | |
download | op-kernel-dev-841c009007144bed9b46643e2e0c4ba6821a2299.zip op-kernel-dev-841c009007144bed9b46643e2e0c4ba6821a2299.tar.gz |
lib/Kconfig: use bool instead of boolean
Keyword 'boolean' for type definition attributes is considered
deprecated and, therefore, should not be used anymore.
See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com
Signed-off-by: Christoph Jaeger <cj@linux.com>
Cc: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index cd177ca..cb9758e 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -14,7 +14,7 @@ config BITREVERSE tristate config HAVE_ARCH_BITREVERSE - boolean + bool default n depends on BITREVERSE help |