diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-16 23:57:37 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-02-28 19:31:58 -0500 |
commit | 630d9c47274aa89bfa77fe6556d7818bdcb12992 (patch) | |
tree | 501b418c3c89d4c80113aa2fdbbc917eedacd2d4 /fs/statfs.c | |
parent | 13ae246db4a02971ef4f557af1f6d3e21d64b710 (diff) | |
download | linux-630d9c47274aa89bfa77fe6556d7818bdcb12992.tar.gz linux-630d9c47274aa89bfa77fe6556d7818bdcb12992.tar.bz2 linux-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/statfs.c')
-rw-r--r-- | fs/statfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/statfs.c b/fs/statfs.c index 2aa6a22e0be2..43e6b6fe4e85 100644 --- a/fs/statfs.c +++ b/fs/statfs.c @@ -1,5 +1,5 @@ #include <linux/syscalls.h> -#include <linux/module.h> +#include <linux/export.h> #include <linux/fs.h> #include <linux/file.h> #include <linux/mount.h> |