Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1:/tmp/cvs-serv14109
Modified Files:
bitops.h
Log Message:
2.5.18 needs a definition of fls() (find last set bit)
Index: bitops.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/bitops.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bitops.h 1 Dec 2002 23:54:43 -0000 1.6
+++ bitops.h 11 Jan 2003 15:37:58 -0000 1.7
@@ -356,6 +356,14 @@
return word;
}
+
+/*
+ * fls: find last bit set.
+ */
+
+#define fls(x) generic_fls(x)
+
+
#ifdef __KERNEL__
/*
|