diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-04 19:05:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:53:52 -0400 |
commit | 504e0e2f3dcac242eb529a01a4b0ea45e4a34eb7 (patch) | |
tree | d8dd3ec676a5f70a96b79f29b446b0a4221bf231 /fs/ntfs/sysctl.c | |
parent | 48149e9d3a7e924010a0daab30a6197b7d7b6580 (diff) |
ntfs: remove NULL value assignments
Static values are automatically initialized to NULL.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Acked-by: Anton Altaparmakov <anton@tuxera.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ntfs/sysctl.c')
-rw-r--r-- | fs/ntfs/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/sysctl.c b/fs/ntfs/sysctl.c index 79a89184cb5e..1927170a35ce 100644 --- a/fs/ntfs/sysctl.c +++ b/fs/ntfs/sysctl.c | |||
@@ -56,7 +56,7 @@ static ctl_table sysctls_root[] = { | |||
56 | }; | 56 | }; |
57 | 57 | ||
58 | /* Storage for the sysctls header. */ | 58 | /* Storage for the sysctls header. */ |
59 | static struct ctl_table_header *sysctls_root_table = NULL; | 59 | static struct ctl_table_header *sysctls_root_table; |
60 | 60 | ||
61 | /** | 61 | /** |
62 | * ntfs_sysctl - add or remove the debug sysctl | 62 | * ntfs_sysctl - add or remove the debug sysctl |