diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-03-26 01:39:26 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 08:57:12 -0800 |
commit | 6d9f937b559d664b6f222cb91eca9c6802bfe89a (patch) | |
tree | f431c052f0c0d9f2d29bb6e39e3ff142f23e10c9 /arch | |
parent | 2875aef8bd0e42367a66a78ef7abe10f3bba27b5 (diff) | |
download | linux-3.10-6d9f937b559d664b6f222cb91eca9c6802bfe89a.tar.gz linux-3.10-6d9f937b559d664b6f222cb91eca9c6802bfe89a.tar.bz2 linux-3.10-6d9f937b559d664b6f222cb91eca9c6802bfe89a.zip |
[PATCH] bitops: m32r: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove find_{next,first}{,_zero}_bit()
- remove __ffs()
- remove generic_fls()
- remove generic_fls64()
- remove sched_find_first_bit()
- remove generic_ffs()
- remove generic_hweight{32,16,8}()
- 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()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m32r/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index a3dcc3fab4b..05c864c6c2d 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig @@ -214,6 +214,14 @@ config RWSEM_XCHGADD_ALGORITHM bool default n +config GENERIC_FIND_NEXT_BIT + bool + default y + +config GENERIC_HWEIGHT + bool + default y + config GENERIC_CALIBRATE_DELAY bool default y |