diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-13 18:53:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-13 20:18:22 -0400 |
commit | c70b17b6538ecda81050a0f5a5475137a0ae451f (patch) | |
tree | 27de504de1992fae1685b9b15f46c91a347d3062 /fs/affs | |
parent | 73516ace940a7c3f374f3e34c3c03cd3886be62f (diff) |
fs/affs: remove redundant sys_tz declarations
sys_tz is already declared in include/linux/time.h
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/affs')
-rw-r--r-- | fs/affs/amigaffs.c | 2 | ||||
-rw-r--r-- | fs/affs/inode.c | 1 | ||||
-rw-r--r-- | fs/affs/super.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/fs/affs/amigaffs.c b/fs/affs/amigaffs.c index 406b29836b19..abc853968fed 100644 --- a/fs/affs/amigaffs.c +++ b/fs/affs/amigaffs.c | |||
@@ -10,8 +10,6 @@ | |||
10 | 10 | ||
11 | #include "affs.h" | 11 | #include "affs.h" |
12 | 12 | ||
13 | extern struct timezone sys_tz; | ||
14 | |||
15 | static char ErrorBuffer[256]; | 13 | static char ErrorBuffer[256]; |
16 | 14 | ||
17 | /* | 15 | /* |
diff --git a/fs/affs/inode.c b/fs/affs/inode.c index 930aac3669d6..e217c511459b 100644 --- a/fs/affs/inode.c +++ b/fs/affs/inode.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include "affs.h" | 14 | #include "affs.h" |
15 | 15 | ||
16 | extern const struct inode_operations affs_symlink_inode_operations; | 16 | extern const struct inode_operations affs_symlink_inode_operations; |
17 | extern struct timezone sys_tz; | ||
18 | 17 | ||
19 | struct inode *affs_iget(struct super_block *sb, unsigned long ino) | 18 | struct inode *affs_iget(struct super_block *sb, unsigned long ino) |
20 | { | 19 | { |
diff --git a/fs/affs/super.c b/fs/affs/super.c index a67dc72d87b4..f754ab68a840 100644 --- a/fs/affs/super.c +++ b/fs/affs/super.c | |||
@@ -20,8 +20,6 @@ | |||
20 | #include <linux/writeback.h> | 20 | #include <linux/writeback.h> |
21 | #include "affs.h" | 21 | #include "affs.h" |
22 | 22 | ||
23 | extern struct timezone sys_tz; | ||
24 | |||
25 | static int affs_statfs(struct dentry *dentry, struct kstatfs *buf); | 23 | static int affs_statfs(struct dentry *dentry, struct kstatfs *buf); |
26 | static int affs_remount (struct super_block *sb, int *flags, char *data); | 24 | static int affs_remount (struct super_block *sb, int *flags, char *data); |
27 | 25 | ||