diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-08-31 19:11:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-08-31 19:11:50 -0700 |
commit | e10994ff38ded64e4cd2267a6e404a4c8632bcf5 (patch) | |
tree | d930979f3df479a2a913d810bbef016bb145bf16 /tools/include/linux/export.h | |
parent | 5757bd6157f523ff0d448a4ec93938523ca441a9 (diff) | |
parent | 33fef662d20a8a98bafa6b2430b845def30f616a (diff) |
Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull liblockdep fixes from Ingo Molnar:
"Three liblockdep fixes left over from the v4.2 cycle"
* 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
tools/liblockdep: Use the rbtree header provided by common tools headers
tools/liblockdep: Correct macro for WARN
tools: Restore export.h
Diffstat (limited to 'tools/include/linux/export.h')
-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 @@ +#ifndef _TOOLS_LINUX_EXPORT_H_ +#define _TOOLS_LINUX_EXPORT_H_ + +#define EXPORT_SYMBOL(sym) +#define EXPORT_SYMBOL_GPL(sym) +#define EXPORT_SYMBOL_GPL_FUTURE(sym) +#define EXPORT_UNUSED_SYMBOL(sym) +#define EXPORT_UNUSED_SYMBOL_GPL(sym) + +#endif |