/* SPDX-License-Identifier: GPL-2.0 */ /* asm/bitops.h for Linux/CRIS * * TODO: asm versions if speed is needed * * All bit operations return 0 if the bit was cleared before the * operation and != 0 if it was not. * * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1). */ #ifndef _CRIS_BITOPS_H #define _CRIS_BITOPS_H /* Currently this is unsuitable for consumption outside the kernel. */ #ifdef __KERNEL__ #ifndef _LINUX_BITOPS_H #error only <linux/bitops.h> can be included directly #endif #include <arch/bitops.h> #include <linux/compiler.h> #include <asm/barrier.h> #include <asm-generic/bitops/atomic.h> #include <asm-generic/bitops/non-atomic.h> /* * Since we define it "external", it collides with the built-in * definition, which doesn't have the same semantics. We don't want to * use -fno-builtin, so just hide the name ffs. */ #define ffs(x) kernel_ffs(x) #include <asm-generic/bitops/fls.h> #include <asm-generic/bitops/__fls.h> #include <asm-generic/bitops/fls64.h> #include <asm-generic/bitops/hweight.h> #include <asm-generic/bitops/find.h> #include <asm-generic/bitops/lock.h> #include <asm-generic/bitops/le.h> #include <asm-generic/bitops/ext2-atomic-setbit.h> #include <asm-generic/bitops/sched.h> #endif /* __KERNEL__ */ #endif /* _CRIS_BITOPS_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Akinobu Mita | 28 | 36.84% | 3 | 18.75% |
Linus Torvalds | 20 | 26.32% | 3 | 18.75% |
Jiri Slaby | 8 | 10.53% | 1 | 6.25% |
Geert Uytterhoeven | 4 | 5.26% | 1 | 6.25% |
Rusty Russell | 3 | 3.95% | 1 | 6.25% |
Nicholas Piggin | 3 | 3.95% | 1 | 6.25% |
Mikael Starvik | 3 | 3.95% | 2 | 12.50% |
Rabin Vincent | 3 | 3.95% | 1 | 6.25% |
Peter Zijlstra | 2 | 2.63% | 1 | 6.25% |
Greg Kroah-Hartman | 1 | 1.32% | 1 | 6.25% |
Jesper Nilsson | 1 | 1.32% | 1 | 6.25% |
Total | 76 | 100.00% | 16 | 100.00% |