From: Kenn H. <ke...@us...> - 2005-03-28 16:27:32
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25107/include/asm-vax Modified Files: bitops.h Log Message: Make first argument of find_next_zero_bit() const Index: bitops.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/bitops.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- bitops.h 28 Feb 2005 22:14:56 -0000 1.18 +++ bitops.h 28 Mar 2005 16:27:23 -0000 1.19 @@ -409,7 +409,7 @@ */ extern __inline__ unsigned long -find_next_zero_bit(void * addr, unsigned long size, unsigned long offset) +find_next_zero_bit(const void * addr, unsigned long size, unsigned long offset) { unsigned int * p = ((unsigned int *) addr) + (offset >> 5); unsigned int result = offset & ~31UL; |