mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-02 03:03:00 +09:00
commit 02bc11de56 upstream.
Adding for_each_clear_bit macro plus all its the necessary backbone
functions. Taken from related kernel code. It will be used in following
patch.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-cayv2zbqi0nlmg5sjjxs1775@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
286 B
C
13 lines
286 B
C
#ifndef _ASM_GENERIC_BITOPS_FFZ_H_
|
|
#define _ASM_GENERIC_BITOPS_FFZ_H_
|
|
|
|
/*
|
|
* ffz - find first zero in word.
|
|
* @word: The word to search
|
|
*
|
|
* Undefined if no zero exists, so code should check against ~0UL first.
|
|
*/
|
|
#define ffz(x) __ffs(~(x))
|
|
|
|
#endif /* _ASM_GENERIC_BITOPS_FFZ_H_ */
|