MIPS: bitops: Fix reference to ffz location

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>
This commit is contained in:
Geert Uytterhoeven 2021-01-08 11:55:26 +01:00 committed by Thomas Bogendoerfer
parent ccb2177486
commit 99b40ced9e
1 changed files with 1 additions and 1 deletions

View 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)
{