Go to the documentation of this file. 1 #ifndef _ASM_GENERIC_BITOPS_FIND_H_
2 #define _ASM_GENERIC_BITOPS_FIND_H_
15 #ifndef find_next_zero_bit
26 #ifdef CONFIG_GENERIC_FIND_FIRST_BIT
49 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
50 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)