diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-10-29 16:18:11 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-10-29 16:18:11 -0400 |
commit | 38605cae99d386332df6822a22dba7bfdc8fae1c (patch) | |
tree | c7f086158d726dfeba03a0864fcbd52083365436 /kernel/sched.c | |
parent | 8eb172d9418c9387234a2c9a344131c46b5eea5b (diff) |
sched: fix style in kernel/sched.c
fallout of recent commits: small coding style fixes.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 6c4abfbd68e6..3f6bd1112900 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -5365,7 +5365,7 @@ static struct ctl_table sd_ctl_dir[] = { | |||
5365 | .procname = "sched_domain", | 5365 | .procname = "sched_domain", |
5366 | .mode = 0555, | 5366 | .mode = 0555, |
5367 | }, | 5367 | }, |
5368 | {0,}, | 5368 | {0, }, |
5369 | }; | 5369 | }; |
5370 | 5370 | ||
5371 | static struct ctl_table sd_ctl_root[] = { | 5371 | static struct ctl_table sd_ctl_root[] = { |
@@ -5375,7 +5375,7 @@ static struct ctl_table sd_ctl_root[] = { | |||
5375 | .mode = 0555, | 5375 | .mode = 0555, |
5376 | .child = sd_ctl_dir, | 5376 | .child = sd_ctl_dir, |
5377 | }, | 5377 | }, |
5378 | {0,}, | 5378 | {0, }, |
5379 | }; | 5379 | }; |
5380 | 5380 | ||
5381 | static struct ctl_table *sd_alloc_ctl_entry(int n) | 5381 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
@@ -7251,13 +7251,13 @@ static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) | |||
7251 | } | 7251 | } |
7252 | 7252 | ||
7253 | struct cgroup_subsys cpu_cgroup_subsys = { | 7253 | struct cgroup_subsys cpu_cgroup_subsys = { |
7254 | .name = "cpu", | 7254 | .name = "cpu", |
7255 | .create = cpu_cgroup_create, | 7255 | .create = cpu_cgroup_create, |
7256 | .destroy = cpu_cgroup_destroy, | 7256 | .destroy = cpu_cgroup_destroy, |
7257 | .can_attach = cpu_cgroup_can_attach, | 7257 | .can_attach = cpu_cgroup_can_attach, |
7258 | .attach = cpu_cgroup_attach, | 7258 | .attach = cpu_cgroup_attach, |
7259 | .populate = cpu_cgroup_populate, | 7259 | .populate = cpu_cgroup_populate, |
7260 | .subsys_id = cpu_cgroup_subsys_id, | 7260 | .subsys_id = cpu_cgroup_subsys_id, |
7261 | .early_init = 1, | 7261 | .early_init = 1, |
7262 | }; | 7262 | }; |
7263 | 7263 | ||