From: James S. <jsi...@us...> - 2002-02-05 18:41:08
|
Update of /cvsroot/linux-mips/linux/include/asm-mips In directory usw-pr-cvs1:/tmp/cvs-serv3723/asm-mips Modified Files: bitops.h Log Message: Don't include <asm/mipsregs.h>. Index: bitops.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/bitops.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- bitops.h 2002/01/02 18:21:48 1.7 +++ bitops.h 2002/02/05 17:07:49 1.8 @@ -43,8 +43,6 @@ #ifdef CONFIG_CPU_HAS_LLSC -#include <asm/mipsregs.h> - /* * These functions for MIPS ISA > 1 are interrupt and SMP proof and * interrupt friendly @@ -677,7 +675,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; |