diff options
author | Arnaldo Carvalho de Melo <[email protected]> | 2017-04-17 16:22:30 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2017-04-19 13:01:49 -0300 |
commit | a12a4e023a55f058178afea1ada3ce7bf4db94c3 (patch) | |
tree | c36ca38f3961424278f2357053f71fc7a2a9fdef | |
parent | 3d689ed6099a1a11c38bb78aff7498e78e287e0b (diff) |
tools include: Include missing headers for fls() and types in linux/log2.h
Cc: Adrian Hunter <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/include/linux/log2.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/include/linux/log2.h b/tools/include/linux/log2.h index d5677d39c1e4..0325cefc2220 100644 --- a/tools/include/linux/log2.h +++ b/tools/include/linux/log2.h @@ -12,6 +12,9 @@ #ifndef _TOOLS_LINUX_LOG2_H #define _TOOLS_LINUX_LOG2_H +#include <linux/bitops.h> +#include <linux/types.h> + /* * non-constant log of base 2 calculators * - the arch may override these in asm/bitops.h if they can be implemented |