Skip to content

Commit

Permalink
sched: Don't mix use of typedef ctl_table and struct ctl_table
Browse files Browse the repository at this point in the history
Just use struct ctl_table.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1371063336.2069.22.camel@joe-AO722
Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Joe Perches authored and Ingo Molnar committed Jun 19, 2013
1 parent 94c95ba commit be7002e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/sched/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4533,7 +4533,7 @@ sd_alloc_ctl_domain_table(struct sched_domain *sd)
return table;
}

static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
{
struct ctl_table *entry, *table;
struct sched_domain *sd;
Expand Down

0 comments on commit be7002e

Please sign in to comment.