Update of /cvsroot/linux-mips/linux/include/asm-mips64
In directory usw-pr-cvs1:/tmp/cvs-serv3723/asm-mips64
Modified Files:
bitops.h
Log Message:
Don't include <asm/mipsregs.h>.
Index: bitops.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/bitops.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- bitops.h 2002/01/02 18:21:48 1.6
+++ bitops.h 2002/02/05 17:07:49 1.7
@@ -18,7 +18,6 @@
#include <asm/system.h>
#include <asm/sgidefs.h>
-#include <asm/mipsregs.h>
/*
* set_bit - Atomically set a bit in memory
@@ -391,7 +390,7 @@
*
* Undefined if no zero exists, so code should check against ~0UL first.
*/
-static inline unsigned long ffz(unsigned long word)
+static __inline__ unsigned long ffz(unsigned long word)
{
int b = 0, s;
|