mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	clk: Use seq_puts() in possible_parent_show()
A string which did not contain a data format specification should be put into a sequence. Thus use the corresponding function “seq_puts”. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
		
							parent
							
								
									9f77672260
								
							
						
					
					
						commit
						1ccc0ddf04
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -3021,15 +3021,15 @@ static void possible_parent_show(struct seq_file *s, struct clk_core *core,
 | 
			
		|||
	 */
 | 
			
		||||
	parent = clk_core_get_parent_by_index(core, i);
 | 
			
		||||
	if (parent)
 | 
			
		||||
		seq_printf(s, "%s", parent->name);
 | 
			
		||||
		seq_puts(s, parent->name);
 | 
			
		||||
	else if (core->parents[i].name)
 | 
			
		||||
		seq_printf(s, "%s", core->parents[i].name);
 | 
			
		||||
		seq_puts(s, core->parents[i].name);
 | 
			
		||||
	else if (core->parents[i].fw_name)
 | 
			
		||||
		seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
 | 
			
		||||
	else if (core->parents[i].index >= 0)
 | 
			
		||||
		seq_printf(s, "%s",
 | 
			
		||||
			   of_clk_get_parent_name(core->of_node,
 | 
			
		||||
						  core->parents[i].index));
 | 
			
		||||
		seq_puts(s,
 | 
			
		||||
			 of_clk_get_parent_name(core->of_node,
 | 
			
		||||
						core->parents[i].index));
 | 
			
		||||
	else
 | 
			
		||||
		seq_puts(s, "(missing)");
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue