From: Joe Perches Date: Thu, 22 May 2014 00:54:27 +0000 (+1000) Subject: lockd: convert use of typedef ctl_table to struct ctl_table X-Git-Tag: next-20140530~1^2~71 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a9113e9a29a8bf51a8c12e34d809657c7d595564;p=karo-tx-linux.git lockd: convert use of typedef ctl_table to struct ctl_table This typedef is unnecessary and should just be removed. Signed-off-by: Joe Perches Signed-off-by: Andrew Morton --- diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c index 2b431f7266c3..8f27c93f8d2e 100644 --- a/fs/lockd/svc.c +++ b/fs/lockd/svc.c @@ -436,7 +436,7 @@ EXPORT_SYMBOL_GPL(lockd_down); * Sysctl parameters (same as module parameters, different interface). */ -static ctl_table nlm_sysctls[] = { +static struct ctl_table nlm_sysctls[] = { { .procname = "nlm_grace_period", .data = &nlm_grace_period, @@ -490,7 +490,7 @@ static ctl_table nlm_sysctls[] = { { } }; -static ctl_table nlm_sysctl_dir[] = { +static struct ctl_table nlm_sysctl_dir[] = { { .procname = "nfs", .mode = 0555, @@ -499,7 +499,7 @@ static ctl_table nlm_sysctl_dir[] = { { } }; -static ctl_table nlm_sysctl_root[] = { +static struct ctl_table nlm_sysctl_root[] = { { .procname = "fs", .mode = 0555,