summaryrefslogtreecommitdiffstats
path: root/lib/radix-tree.c
diff options
context:
space:
mode:
authorPaul Gortmaker2011-11-17 03:29:17 +0100
committerPaul Gortmaker2012-03-07 21:04:04 +0100
commit8bc3bcc93a2b4e47d5d410146f6546bca6171663 (patch)
tree101f55a96f751749041c90c32ef1ba89f94dc4d1 /lib/radix-tree.c
parentfs: reduce the use of module.h wherever possible (diff)
downloadkernel-qcow2-linux-8bc3bcc93a2b4e47d5d410146f6546bca6171663.tar.gz
kernel-qcow2-linux-8bc3bcc93a2b4e47d5d410146f6546bca6171663.tar.xz
kernel-qcow2-linux-8bc3bcc93a2b4e47d5d410146f6546bca6171663.zip
lib: reduce the use of module.h wherever possible
For files only using THIS_MODULE and/or EXPORT_SYMBOL, map them onto including export.h -- or if the file isn't even using those, then just delete the include. Fix up any implicit include dependencies that were being masked by module.h along the way. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'lib/radix-tree.c')
-rw-r--r--lib/radix-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radix-tree.c b/lib/radix-tree.c
index dc63d0818394..3e69c2b66c94 100644
--- a/lib/radix-tree.c
+++ b/lib/radix-tree.c
@@ -22,7 +22,7 @@
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/kernel.h>
-#include <linux/module.h>
+#include <linux/export.h>
#include <linux/radix-tree.h>
#include <linux/percpu.h>
#include <linux/slab.h>