diff options
author | Borislav Petkov <bp@suse.de> | 2014-02-23 06:04:53 -0500 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-01 15:18:17 -0400 |
commit | 5ac3e4b6d1d8fb911bb9c497126c51b02033a412 (patch) | |
tree | 9264ab483b4a304040ec091ae1d90a716f632d04 /tools/include | |
parent | 3617660e4e1618a888a2e3a4067224534302cb33 (diff) |
tools: Unify export.h
So tools/ has been growing three, at a different stage of their
development export.h headers and so we should unite into one. Add
tools/include/ to the include path of virtio and liblockdep to pick the
shared header now.
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Sasha Levin <sasha.levin@oracle.com>
Cc: virtio-dev@lists.oasis-open.org
Cc: virtualization@lists.linux-foundation.org
Link: http://lkml.kernel.org/r/1397493185-19521-2-git-send-email-bp@alien8.de
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/include')
-rw-r--r-- | tools/include/linux/export.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/include/linux/export.h b/tools/include/linux/export.h new file mode 100644 index 000000000000..d07e586b9ba0 --- /dev/null +++ b/tools/include/linux/export.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef _TOOLS_LINUX_EXPORT_H_ | ||
2 | #define _TOOLS_LINUX_EXPORT_H_ | ||
3 | |||
4 | #define EXPORT_SYMBOL(sym) | ||
5 | #define EXPORT_SYMBOL_GPL(sym) | ||
6 | #define EXPORT_SYMBOL_GPL_FUTURE(sym) | ||
7 | #define EXPORT_UNUSED_SYMBOL(sym) | ||
8 | #define EXPORT_UNUSED_SYMBOL_GPL(sym) | ||
9 | |||
10 | #endif | ||