diff options
Diffstat (limited to 'ANDROID_3.4.5/include/asm-generic/bitops/ffz.h')
-rw-r--r-- | ANDROID_3.4.5/include/asm-generic/bitops/ffz.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ANDROID_3.4.5/include/asm-generic/bitops/ffz.h b/ANDROID_3.4.5/include/asm-generic/bitops/ffz.h deleted file mode 100644 index 6744bd4c..00000000 --- a/ANDROID_3.4.5/include/asm-generic/bitops/ffz.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef _ASM_GENERIC_BITOPS_FFZ_H_ -#define _ASM_GENERIC_BITOPS_FFZ_H_ - -/* - * ffz - find first zero in word. - * @word: The word to search - * - * Undefined if no zero exists, so code should check against ~0UL first. - */ -#define ffz(x) __ffs(~(x)) - -#endif /* _ASM_GENERIC_BITOPS_FFZ_H_ */ |