Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax
In directory usw-pr-cvs1:/tmp/cvs-serv10807
Modified Files:
bitops.h
Log Message:
DA: bitops incorrect.. ffz not doing ffz... noticed while doing file descriptor
stuff .. should be right now
Index: bitops.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/bitops.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bitops.h 2001/01/17 16:18:52 1.1
+++ bitops.h 2001/05/28 22:40:27 1.2
@@ -177,7 +177,7 @@
{
__asm__("ffc $0, $32, %1 , %0"
:"=r" (word)
- :"r" (~word));
+ :"r" (word));
return word;
}
|