summaryrefslogtreecommitdiffstats
path: root/kernel/utsname_sysctl.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-06-06 14:38:08 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 16:08:16 -0700
commit6f8fd1d77e64dd6be1075041cdfd8de4c2ca4e2b (patch)
treebece2621d01d574377d952948d501bb838afc667 /kernel/utsname_sysctl.c
parenta5c5928b759d8c7382cccc7be36769a68046cc58 (diff)
downloadop-kernel-dev-6f8fd1d77e64dd6be1075041cdfd8de4c2ca4e2b.zip
op-kernel-dev-6f8fd1d77e64dd6be1075041cdfd8de4c2ca4e2b.tar.gz
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/utsname_sysctl.c')
-rw-r--r--kernel/utsname_sysctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/utsname_sysctl.c b/kernel/utsname_sysctl.c
index 6fbe811..c8eac43 100644
--- a/kernel/utsname_sysctl.c
+++ b/kernel/utsname_sysctl.c
@@ -17,7 +17,7 @@
#ifdef CONFIG_PROC_SYSCTL
-static void *get_uts(ctl_table *table, int write)
+static void *get_uts(struct ctl_table *table, int write)
{
char *which = table->data;
struct uts_namespace *uts_ns;
@@ -32,7 +32,7 @@ static void *get_uts(ctl_table *table, int write)
return which;
}
-static void put_uts(ctl_table *table, int write, void *which)
+static void put_uts(struct ctl_table *table, int write, void *which)
{
if (!write)
up_read(&uts_sem);
@@ -44,7 +44,7 @@ static void put_uts(ctl_table *table, int write, void *which)
* Special case of dostring for the UTS structure. This has locks
* to observe. Should this be in kernel/sys.c ????
*/
-static int proc_do_uts_string(ctl_table *table, int write,
+static int proc_do_uts_string(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos)
{
struct ctl_table uts_table;
OpenPOWER on IntegriCloud