x86: change x86 to use generic find_next_bit
[deliverable/linux.git] / include / asm-x86 / bitops_32.h
index 2513a81f82aae3cabd17db124f944bb0b2197af7..7c9ed759afb29176c4a7334f987de134b7264713 100644 (file)
@@ -39,14 +39,6 @@ static inline int find_first_zero_bit(const unsigned long *addr, unsigned size)
        return res;
 }
 
-/**
- * find_next_zero_bit - find the first zero bit in a memory region
- * @addr: The address to base the search on
- * @offset: The bit number to start searching at
- * @size: The maximum size to search
- */
-int find_next_zero_bit(const unsigned long *addr, int size, int offset);
-
 /**
  * __ffs - find first bit in word.
  * @word: The word to search
@@ -82,14 +74,6 @@ static inline unsigned find_first_bit(const unsigned long *addr, unsigned size)
        return x;
 }
 
-/**
- * find_next_bit - find the first set bit in a memory region
- * @addr: The address to base the search on
- * @offset: The bit number to start searching at
- * @size: The maximum size to search
- */
-int find_next_bit(const unsigned long *addr, int size, int offset);
-
 /**
  * ffz - find first zero in word.
  * @word: The word to search
This page took 0.027557 seconds and 5 git commands to generate.