diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-03-26 01:39:43 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 08:57:15 -0800 |
commit | d4337aa5281a7357666f713339211fcd278f4e7a (patch) | |
tree | 405917e1e56f1beab9b0e5eddff6b15932795624 /arch/xtensa | |
parent | f33e2fbacce8008984db99c45120db31081577c5 (diff) | |
download | linux-3.10-d4337aa5281a7357666f713339211fcd278f4e7a.tar.gz linux-3.10-d4337aa5281a7357666f713339211fcd278f4e7a.tar.bz2 linux-3.10-d4337aa5281a7357666f713339211fcd278f4e7a.zip |
[PATCH] bitops: xtensa: use generic bitops
- remove {,test_and_}{set,clear,change}_bit()
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove generic_fls64()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
- remove generic_hweight{32,16,8}()
- remove sched_find_first_bit()
- remove minix_{test,set,test_and_clear,test,find_first_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index e90ef5db891..dbeb3504c3c 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig @@ -22,6 +22,14 @@ config RWSEM_XCHGADD_ALGORITHM bool default y +config GENERIC_FIND_NEXT_BIT + bool + default y + +config GENERIC_HWEIGHT + bool + default y + config GENERIC_HARDIRQS bool default y |