blob: 9bce3b56b5e74c25541749c9a916be0c70747c3b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -03002#ifndef __TOOLS_ASM_GENERIC_BITOPS_H
3#define __TOOLS_ASM_GENERIC_BITOPS_H
4
5/*
6 * tools/ copied this from include/asm-generic/bitops.h, bit by bit as it needed
7 * some functions.
8 *
9 * For the benefit of those who are trying to port Linux to another
10 * architecture, here are some C-language equivalents. You should
11 * recode these in the native assembly language, if at all possible.
12 *
13 * C language equivalents written by Theodore Ts'o, 9/26/92
14 */
15
16#include <asm-generic/bitops/__ffs.h>
Jiri Olsa02bc11d2016-10-10 09:26:33 +020017#include <asm-generic/bitops/__ffz.h>
Arnaldo Carvalho de Meloafcd4f62014-12-16 11:26:35 -030018#include <asm-generic/bitops/fls.h>
19#include <asm-generic/bitops/__fls.h>
20#include <asm-generic/bitops/fls64.h>
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -030021#include <asm-generic/bitops/find.h>
22
23#ifndef _TOOLS_LINUX_BITOPS_H_
24#error only <linux/bitops.h> can be included directly
25#endif
26
Arnaldo Carvalho de Melo25cd4802015-01-13 10:19:12 -030027#include <asm-generic/bitops/hweight.h>
28
Arnaldo Carvalho de Melo88bcea42014-12-16 10:53:27 -030029#include <asm-generic/bitops/atomic.h>
30
31#endif /* __TOOLS_ASM_GENERIC_BITOPS_H */