From: Geert Uytterhoeven Date: Fri, 8 Jan 2021 10:55:26 +0000 (+0100) Subject: MIPS: bitops: Fix reference to ffz location X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=99b40ced9ef63cef784905248735bd209ed6fe53;p=linux.git MIPS: bitops: Fix reference to ffz location Unlike most other architectures, MIPS defines ffz() below ffs(). Signed-off-by: Geert Uytterhoeven Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index a74769940fbd9..1b08f9f38593c 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -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) {