Commit 99b40ced authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Thomas Bogendoerfer
Browse files

MIPS: bitops: Fix reference to ffz location



Unlike most other architectures, MIPS defines ffz() below ffs().

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent ccb21774
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -435,7 +435,7 @@ static inline int fls(unsigned int x)
 *
 * This is defined the same way as
 * the libc and compiler builtin ffs routines, therefore
 * differs in spirit from the above ffz (man ffs).
 * differs in spirit from the below ffz (man ffs).
 */
static inline int ffs(int word)
{