]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ntfs: convert use of typedef ctl_table to struct ctl_table
authorJoe Perches <joe@perches.com>
Sat, 17 May 2014 13:19:19 +0000 (23:19 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 21 May 2014 07:11:25 +0000 (17:11 +1000)
This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/ntfs/sysctl.c

index 1927170a35cec81c2dea722a4cad957a0b4784cb..a503156ec15fbbd97d337824ba7b8b9582bd440d 100644 (file)
@@ -34,7 +34,7 @@
 #include "debug.h"
 
 /* Definition of the ntfs sysctl. */
-static ctl_table ntfs_sysctls[] = {
+static struct ctl_table ntfs_sysctls[] = {
        {
                .procname       = "ntfs-debug",
                .data           = &debug_msgs,          /* Data pointer and size. */
@@ -46,7 +46,7 @@ static ctl_table ntfs_sysctls[] = {
 };
 
 /* Define the parent directory /proc/sys/fs. */
-static ctl_table sysctls_root[] = {
+static struct ctl_table sysctls_root[] = {
        {
                .procname       = "fs",
                .mode           = 0555,