[PATCH 6/6] m68knommu: fix build error due to the lack of find_next_bit_le()

From: Akinobu Mita
Date: Sun Apr 24 2011 - 05:51:52 EST


m68knommu can't build ext4 and udf due to the lack of find_next_bit_le().
By the previous style change, m68knommu got generic find_next_bit_le().
The extern declaration is only needed to fix the build error.

Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx>
Cc: Greg Ungerer <gerg@xxxxxxxxxxx>
---
arch/m68k/include/asm/bitops_no.h | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/arch/m68k/include/asm/bitops_no.h b/arch/m68k/include/asm/bitops_no.h
index e98d42c..247854e 100644
--- a/arch/m68k/include/asm/bitops_no.h
+++ b/arch/m68k/include/asm/bitops_no.h
@@ -326,6 +326,9 @@ found_middle:
}
#define find_next_zero_bit_le find_next_zero_bit_le

+extern unsigned long find_next_bit_le(const void *addr,
+ unsigned long size, unsigned long offset);
+
#endif /* __KERNEL__ */

#include <asm-generic/bitops/fls.h>
--
1.7.4.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/