VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Paul Gortmaker <paul.gortmaker@windriver.com> 2011-11-16 21:29:17 -0500 committer: Paul Gortmaker <paul.gortmaker@windriver.com> 2012-03-07 15:04:04 -0500 commit: 8bc3bcc93a2b4e47d5d410146f6546bca6171663 parent: 630d9c47274aa89bfa77fe6556d7818bdcb12992
Commit Summary:
lib: reduce the use of module.h wherever possible
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/lib/rbtree.c b/lib/rbtree.c
index a16be19a1305..d4175565dc2c 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -21,7 +21,7 @@
 */
 
 #include <linux/rbtree.h>
-#include <linux/module.h>
+#include <linux/export.h>
 
 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root)
 {