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-Url: https://git.stricted.de/?a=commitdiff_plain;h=fab71a90eddaf4d5f654fdd0ea7c46315c8da4a4;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.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,