diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2015-04-16 15:47:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-17 09:04:06 -0400 |
commit | 58932ef7f2f28e89ee37c6e2be94885e5078ba77 (patch) | |
tree | 081998d8a8d81d1a131e7120227be65ccf754698 /fs/fat/inode.c | |
parent | a40a7d9d07b818ce9aa9f6ddf86076a5eef2d8f9 (diff) |
fs/fat: remove unnecessary includes
'fat.h' includes <linux/buffer_head.h> which includes <linux/fs.h> which
includes all the header files required for all *.c files fat filesystem.
[akpm@linux-foundation.org: fs/fat/iode.c needs seq_file.h]
[sfr@canb.auug.org.au: put one actually necessary include file back]
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fat/inode.c')
-rw-r--r-- | fs/fat/inode.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index b3a2a0e1ef9b..d1a26c2de919 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -11,20 +11,12 @@ | |||
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/init.h> | ||
15 | #include <linux/time.h> | ||
16 | #include <linux/slab.h> | ||
17 | #include <linux/seq_file.h> | ||
18 | #include <linux/pagemap.h> | 14 | #include <linux/pagemap.h> |
19 | #include <linux/mpage.h> | 15 | #include <linux/mpage.h> |
20 | #include <linux/buffer_head.h> | ||
21 | #include <linux/mount.h> | ||
22 | #include <linux/vfs.h> | 16 | #include <linux/vfs.h> |
17 | #include <linux/seq_file.h> | ||
23 | #include <linux/parser.h> | 18 | #include <linux/parser.h> |
24 | #include <linux/uio.h> | 19 | #include <linux/uio.h> |
25 | #include <linux/writeback.h> | ||
26 | #include <linux/log2.h> | ||
27 | #include <linux/hash.h> | ||
28 | #include <linux/blkdev.h> | 20 | #include <linux/blkdev.h> |
29 | #include <asm/unaligned.h> | 21 | #include <asm/unaligned.h> |
30 | #include "fat.h" | 22 | #include "fat.h" |