blob: 0304600121daa90b3b4ac3621dec03ba94f252d0 [file] [log] [blame]
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -03001#ifndef __TOOLS_ASM_GENERIC_BITOPS_H
2#define __TOOLS_ASM_GENERIC_BITOPS_H
3
4/*
5 * tools/ copied this from include/asm-generic/bitops.h, bit by bit as it needed
6 * some functions.
7 *
8 * For the benefit of those who are trying to port Linux to another
9 * architecture, here are some C-language equivalents. You should
10 * recode these in the native assembly language, if at all possible.
11 *
12 * C language equivalents written by Theodore Ts'o, 9/26/92
13 */
14
15#include <asm-generic/bitops/__ffs.h>
Jiri Olsa856bc9a2016-10-10 09:26:33 +020016#include <asm-generic/bitops/__ffz.h>
Arnaldo Carvalho de Meloafcd4f62014-12-16 11:26:35 -030017#include <asm-generic/bitops/fls.h>
18#include <asm-generic/bitops/__fls.h>
19#include <asm-generic/bitops/fls64.h>
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -030020#include <asm-generic/bitops/find.h>
21
22#ifndef _TOOLS_LINUX_BITOPS_H_
23#error only <linux/bitops.h> can be included directly
24#endif
25
Arnaldo Carvalho de Melo25cd4802015-01-13 10:19:12 -030026#include <asm-generic/bitops/hweight.h>
27
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -030028#include <asm-generic/bitops/atomic.h>
29
30#endif /* __TOOLS_ASM_GENERIC_BITOPS_H */