diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-03-26 01:39:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 08:57:14 -0800 |
commit | 62f1b2465bdf77bb95037a5418040edb2af142d0 (patch) | |
tree | 8243a25283889278cbf6674ad4771dc638cdec33 /arch/sh64/Kconfig | |
parent | e2268c7129e6cab53a5dac1ab0790a547555e21a (diff) | |
download | op-kernel-dev-62f1b2465bdf77bb95037a5418040edb2af142d0.zip op-kernel-dev-62f1b2465bdf77bb95037a5418040edb2af142d0.tar.gz |
[PATCH] bitops: sh64: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove __ffs()
- remove find_{next,first}{,_zero}_bit()
- remove generic_hweight{32,16,8}()
- remove sched_find_first_bit()
- remove generic_ffs()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
- remove ext2_{set,clear}_bit_atomic()
- remove minix_{test,set,test_and_clear,test,find_first_zero}_bit()
- remove generic_fls()
- remove generic_fls64()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Richard Curnow <rc@rc0.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sh64/Kconfig')
-rw-r--r-- | arch/sh64/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sh64/Kconfig b/arch/sh64/Kconfig index 07b172d..58c678e 100644 --- a/arch/sh64/Kconfig +++ b/arch/sh64/Kconfig @@ -21,6 +21,14 @@ config RWSEM_GENERIC_SPINLOCK bool default y +config GENERIC_FIND_NEXT_BIT + bool + default y + +config GENERIC_HWEIGHT + bool + default y + config GENERIC_CALIBRATE_DELAY bool default y |