Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

asm-generic: ffs: Drop bogus reference to ffz location

The generic definition of ffz() is not defined in the same header files
as the generic definitions of ffs().

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Geert Uytterhoeven and committed by
Arnd Bergmann
fc062ad8 2734d6c1

+2 -2
+1 -1
include/asm-generic/bitops/builtin-ffs.h
··· 8 8 * 9 9 * This is defined the same way as 10 10 * the libc and compiler builtin ffs routines, therefore 11 - * differs in spirit from the above ffz (man ffs). 11 + * differs in spirit from ffz (man ffs). 12 12 */ 13 13 #define ffs(x) __builtin_ffs(x) 14 14
+1 -1
include/asm-generic/bitops/ffs.h
··· 8 8 * 9 9 * This is defined the same way as 10 10 * the libc and compiler builtin ffs routines, therefore 11 - * differs in spirit from the above ffz (man ffs). 11 + * differs in spirit from ffz (man ffs). 12 12 */ 13 13 static inline int ffs(int x) 14 14 {