mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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>
This commit is contained in:
		
							parent
							
								
									45afb1734f
								
							
						
					
					
						commit
						014acbf0d5
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -65,8 +65,8 @@ static int convert_prio(int prio)
 | 
			
		|||
int cpupri_find(struct cpupri *cp, struct task_struct *p,
 | 
			
		||||
		struct cpumask *lowest_mask)
 | 
			
		||||
{
 | 
			
		||||
	int                  idx      = 0;
 | 
			
		||||
	int                  task_pri = convert_prio(p->prio);
 | 
			
		||||
	int idx = 0;
 | 
			
		||||
	int task_pri = convert_prio(p->prio);
 | 
			
		||||
 | 
			
		||||
	if (task_pri >= MAX_RT_PRIO)
 | 
			
		||||
		return 0;
 | 
			
		||||
| 
						 | 
				
			
			@ -137,9 +137,9 @@ int cpupri_find(struct cpupri *cp, struct task_struct *p,
 | 
			
		|||
 */
 | 
			
		||||
void cpupri_set(struct cpupri *cp, int cpu, int newpri)
 | 
			
		||||
{
 | 
			
		||||
	int                 *currpri = &cp->cpu_to_pri[cpu];
 | 
			
		||||
	int                  oldpri  = *currpri;
 | 
			
		||||
	int                  do_mb = 0;
 | 
			
		||||
	int *currpri = &cp->cpu_to_pri[cpu];
 | 
			
		||||
	int oldpri = *currpri;
 | 
			
		||||
	int do_mb = 0;
 | 
			
		||||
 | 
			
		||||
	newpri = convert_prio(newpri);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue