From: Yoshinori Sato <ysato@users.sourceforge.jp>

update argument type

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/include/asm-h8300/bitops.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN include/asm-h8300/bitops.h~h8300-fix-warning include/asm-h8300/bitops.h
--- 25/include/asm-h8300/bitops.h~h8300-fix-warning	2005-01-22 18:46:52.086064008 -0800
+++ 25-akpm/include/asm-h8300/bitops.h	2005-01-22 18:46:52.089063552 -0800
@@ -196,7 +196,7 @@ static __inline__ unsigned long __ffs(un
 	return result;
 }
 
-static __inline__ int find_next_zero_bit (void * addr, int size, int offset)
+static __inline__ int find_next_zero_bit (const unsigned long * addr, int size, int offset)
 {
 	unsigned long *p = (unsigned long *)(((unsigned long)addr + (offset >> 3)) & ~3);
 	unsigned long result = offset & ~31UL;
_