aboutsummaryrefslogtreecommitdiffstats
path: root/fs/libfs.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-11-16 23:57:37 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2012-02-28 19:31:58 -0500
commit630d9c47274aa89bfa77fe6556d7818bdcb12992 (patch)
tree501b418c3c89d4c80113aa2fdbbc917eedacd2d4 /fs/libfs.c
parentincludecheck: delete any duplicate instances of module.h (diff)
downloadlinux-dev-630d9c47274aa89bfa77fe6556d7818bdcb12992.tar.xz
linux-dev-630d9c47274aa89bfa77fe6556d7818bdcb12992.zip
fs: 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 'fs/libfs.c')
-rw-r--r--fs/libfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/libfs.c b/fs/libfs.c
index 5b2dbb3ba4fc..001e25be4b65 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -3,7 +3,7 @@
* Library for filesystems writers.
*/
-#include <linux/module.h>
+#include <linux/export.h>
#include <linux/pagemap.h>
#include <linux/slab.h>
#include <linux/mount.h>