]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
coda: convert use of typedef ctl_table to struct ctl_table
authorJoe Perches <joe@perches.com>
Sat, 17 May 2014 13:19:17 +0000 (23:19 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 21 May 2014 07:11:24 +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/coda/sysctl.c

index af56ad56a89ae68982036755438e3a2e22e9798f..34218a8a28cd9c9aa5895e9b773044b6850696ea 100644 (file)
@@ -14,7 +14,7 @@
 #ifdef CONFIG_SYSCTL
 static struct ctl_table_header *fs_table_header;
 
-static ctl_table coda_table[] = {
+static struct ctl_table coda_table[] = {
        {
                .procname       = "timeout",
                .data           = &coda_timeout,
@@ -39,7 +39,7 @@ static ctl_table coda_table[] = {
        {}
 };
 
-static ctl_table fs_table[] = {
+static struct ctl_table fs_table[] = {
        {
                .procname       = "coda",
                .mode           = 0555,