Commit 014acbf0d5c8445e0ff88ae60edd676dd9cc461c
Committed by
Ingo Molnar
1 parent
45afb1734f
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
sched: Fix minor code style issues
Delete redudant spaces between type name and data name or operators. Signed-off-by: Ying Xue <ying.xue0@gmail.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1342076622-6606-1-git-send-email-ying.xue0@gmail.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff
kernel/sched/cpupri.c
... | ... | @@ -65,8 +65,8 @@ |
65 | 65 | int cpupri_find(struct cpupri *cp, struct task_struct *p, |
66 | 66 | struct cpumask *lowest_mask) |
67 | 67 | { |
68 | - int idx = 0; | |
69 | - int task_pri = convert_prio(p->prio); | |
68 | + int idx = 0; | |
69 | + int task_pri = convert_prio(p->prio); | |
70 | 70 | |
71 | 71 | if (task_pri >= MAX_RT_PRIO) |
72 | 72 | return 0; |
... | ... | @@ -137,9 +137,9 @@ |
137 | 137 | */ |
138 | 138 | void cpupri_set(struct cpupri *cp, int cpu, int newpri) |
139 | 139 | { |
140 | - int *currpri = &cp->cpu_to_pri[cpu]; | |
141 | - int oldpri = *currpri; | |
142 | - int do_mb = 0; | |
140 | + int *currpri = &cp->cpu_to_pri[cpu]; | |
141 | + int oldpri = *currpri; | |
142 | + int do_mb = 0; | |
143 | 143 | |
144 | 144 | newpri = convert_prio(newpri); |
145 | 145 |