aboutsummaryrefslogtreecommitdiffstats
path: root/tools/arch/h8300
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2016-07-12 11:12:18 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-07-12 15:20:39 -0300
commitbb9707077b4ee5f77bc9939b057ff8a0d410296f (patch)
tree5d532c5066c0b7e40948a44f6cab11cb3b8d6e61 /tools/arch/h8300
parentperf script python: Silence -Werror=maybe-uninitialized on gcc 5.3.0 (diff)
downloadlinux-dev-bb9707077b4ee5f77bc9939b057ff8a0d410296f.tar.xz
linux-dev-bb9707077b4ee5f77bc9939b057ff8a0d410296f.zip
tools: Copy the bitsperlong.h files from the kernel
We use it in bitops/__ffs.h and bitops/atomic.h, that we also got from the kernel, but were getting it from either newer systems that carry it in /usr/include, or from the kernel sources, that we decided not to touch from tools/ code. Fix it. 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-lwqvgbuitjmrdpjmjp6zqnyx@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/arch/h8300')
-rw-r--r--tools/arch/h8300/include/asm/bitsperlong.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/arch/h8300/include/asm/bitsperlong.h b/tools/arch/h8300/include/asm/bitsperlong.h
new file mode 100644
index 000000000000..e140e46729ac
--- /dev/null
+++ b/tools/arch/h8300/include/asm/bitsperlong.h
@@ -0,0 +1,14 @@
+#ifndef __ASM_H8300_BITS_PER_LONG
+#define __ASM_H8300_BITS_PER_LONG
+
+#include <asm-generic/bitsperlong.h>
+
+#if !defined(__ASSEMBLY__)
+/* h8300-unknown-linux required long */
+#define __kernel_size_t __kernel_size_t
+typedef unsigned long __kernel_size_t;
+typedef long __kernel_ssize_t;
+typedef long __kernel_ptrdiff_t;
+#endif
+
+#endif /* __ASM_H8300_BITS_PER_LONG */