summaryrefslogtreecommitdiffstats
path: root/include/asm-mips/bitops.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-mips/bitops.h')
-rw-r--r--include/asm-mips/bitops.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/asm-mips/bitops.h b/include/asm-mips/bitops.h
index 56d7225bb7..c3a600c43b 100644
--- a/include/asm-mips/bitops.h
+++ b/include/asm-mips/bitops.h
@@ -776,17 +776,6 @@ found_middle:
* holds on the Sparc as it does for the ALPHA.
*/
-#if 0 /* Fool kernel-doc since it doesn't do macros yet */
-/*
- * find_first_zero_bit - find the first zero bit in a memory region
- * @addr: The address to start the search at
- * @size: The maximum size to search
- *
- * Returns the bit-number of the first zero bit, not the number of the byte
- * containing a bit.
- */
-extern int find_first_zero_bit (void *addr, unsigned size);
-#endif
#define find_first_zero_bit(addr, size) \
find_next_zero_bit((addr), (size), 0)