From: Joe Perches Date: Mon, 14 Apr 2014 01:55:51 +0000 (-0700) Subject: security: Convert use of typedef ctl_table to struct ctl_table X-Git-Tag: firefly_0821_release~176^2~2675^2~47 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fab71a90eddaf4d5f654fdd0ea7c46315c8da4a4;p=firefly-linux-kernel-4.4.55.git security: 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: James Morris --- diff --git a/security/keys/sysctl.c b/security/keys/sysctl.c index 8c0af08760c8..b68faa1a5cfd 100644 --- a/security/keys/sysctl.c +++ b/security/keys/sysctl.c @@ -15,7 +15,7 @@ static const int zero, one = 1, max = INT_MAX; -ctl_table key_sysctls[] = { +struct ctl_table key_sysctls[] = { { .procname = "maxkeys", .data = &key_quota_maxkeys,