diff options
author | Al Viro <viro@ZenIV.linux.org.uk> | 2012-10-07 22:27:32 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-10-09 16:28:45 -0400 |
commit | 37185b33240870719b6b5913a46e6a441f1ae96f (patch) | |
tree | 60a0f5adbb3d6b879a504defeddb3ff1ecff77d7 /fs/hostfs | |
parent | 382d95fdfa7ff5c54f6495c597c7cf6d124e404b (diff) |
um: get rid of pointless include "..." where include <...> will do
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/hostfs')
-rw-r--r-- | fs/hostfs/hostfs.h | 2 | ||||
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 4 | ||||
-rw-r--r-- | fs/hostfs/hostfs_user.c | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/fs/hostfs/hostfs.h b/fs/hostfs/hostfs.h index 1fe731337f07..9c88da0e855a 100644 --- a/fs/hostfs/hostfs.h +++ b/fs/hostfs/hostfs.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef __UM_FS_HOSTFS | 1 | #ifndef __UM_FS_HOSTFS |
2 | #define __UM_FS_HOSTFS | 2 | #define __UM_FS_HOSTFS |
3 | 3 | ||
4 | #include "os.h" | 4 | #include <os.h> |
5 | 5 | ||
6 | /* | 6 | /* |
7 | * These are exactly the same definitions as in fs.h, but the names are | 7 | * These are exactly the same definitions as in fs.h, but the names are |
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 124146543aa7..9e45f65241ee 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c | |||
@@ -16,8 +16,8 @@ | |||
16 | #include <linux/mount.h> | 16 | #include <linux/mount.h> |
17 | #include <linux/namei.h> | 17 | #include <linux/namei.h> |
18 | #include "hostfs.h" | 18 | #include "hostfs.h" |
19 | #include "init.h" | 19 | #include <init.h> |
20 | #include "kern.h" | 20 | #include <kern.h> |
21 | 21 | ||
22 | struct hostfs_inode_info { | 22 | struct hostfs_inode_info { |
23 | int fd; | 23 | int fd; |
diff --git a/fs/hostfs/hostfs_user.c b/fs/hostfs/hostfs_user.c index a74ad0d371c2..67838f3aa20a 100644 --- a/fs/hostfs/hostfs_user.c +++ b/fs/hostfs/hostfs_user.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #include <sys/types.h> | 15 | #include <sys/types.h> |
16 | #include <sys/vfs.h> | 16 | #include <sys/vfs.h> |
17 | #include "hostfs.h" | 17 | #include "hostfs.h" |
18 | #include "os.h" | ||
19 | #include <utime.h> | 18 | #include <utime.h> |
20 | 19 | ||
21 | static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p) | 20 | static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p) |