summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2017-04-17 15:22:30 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-04-19 12:01:49 -0400
commita12a4e023a55f058178afea1ada3ce7bf4db94c3 (patch)
treec36ca38f3961424278f2357053f71fc7a2a9fdef
parent3d689ed6099a1a11c38bb78aff7498e78e287e0b (diff)
tools include: Include missing headers for fls() and types in linux/log2.h
Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-7wj865zidu5ylf87i6i7v6z7@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/include/linux/log2.h3
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 @@
12#ifndef _TOOLS_LINUX_LOG2_H 12#ifndef _TOOLS_LINUX_LOG2_H
13#define _TOOLS_LINUX_LOG2_H 13#define _TOOLS_LINUX_LOG2_H
14 14
15#include <linux/bitops.h>
16#include <linux/types.h>
17
15/* 18/*
16 * non-constant log of base 2 calculators 19 * non-constant log of base 2 calculators
17 * - the arch may override these in asm/bitops.h if they can be implemented 20 * - the arch may override these in asm/bitops.h if they can be implemented