MIPS: bitops: Fix reference to ffz location
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 8 Jan 2021 10:55:26 +0000 (11:55 +0100)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Sat, 9 Jan 2021 11:04:03 +0000 (12:04 +0100)
Unlike most other architectures, MIPS defines ffz() below ffs().

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/include/asm/bitops.h

index a747699..1b08f9f 100644 (file)
@@ -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)
 {