diff options
author | Joe Perches <joe@perches.com> | 2014-06-06 17:38:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:16 -0400 |
commit | 6f8fd1d77e64dd6be1075041cdfd8de4c2ca4e2b (patch) | |
tree | bece2621d01d574377d952948d501bb838afc667 /kernel/sysctl.c | |
parent | a5c5928b759d8c7382cccc7be36769a68046cc58 (diff) |
sysctl: convert use of typedef ctl_table to struct ctl_table
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>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 7a910b9081e8..db19e3e2aa4b 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -202,7 +202,7 @@ static int proc_dostring_coredump(struct ctl_table *table, int write, | |||
202 | /* Note: sysrq code uses it's own private copy */ | 202 | /* Note: sysrq code uses it's own private copy */ |
203 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; | 203 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; |
204 | 204 | ||
205 | static int sysrq_sysctl_handler(ctl_table *table, int write, | 205 | static int sysrq_sysctl_handler(struct ctl_table *table, int write, |
206 | void __user *buffer, size_t *lenp, | 206 | void __user *buffer, size_t *lenp, |
207 | loff_t *ppos) | 207 | loff_t *ppos) |
208 | { | 208 | { |