mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	clk: ti: clkctrl: add support for CLK_SET_RATE_PARENT flag
Certain clkctrl clocks, notably the display ones, use the CLK_SET_RATE_PARENT feature extensively. Add support for this flag to the clkctrl clocks. Signed-off-by: Tero Kristo <t-kristo@ti.com> Reported-by: Jyri Sarha <jsarha@ti.com> Acked-by: Tony Lindgren <tony@atomide.com> Tested-by: Jyri Sarha <jsarha@ti.com>
This commit is contained in:
		
							parent
							
								
									7928b2cbe5
								
							
						
					
					
						commit
						49159a9dc3
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -537,6 +537,8 @@ static void __init _ti_omap4_clkctrl_setup(struct device_node *node)
 | 
			
		|||
		init.parent_names = ®_data->parent;
 | 
			
		||||
		init.num_parents = 1;
 | 
			
		||||
		init.flags = 0;
 | 
			
		||||
		if (reg_data->flags & CLKF_SET_RATE_PARENT)
 | 
			
		||||
			init.flags |= CLK_SET_RATE_PARENT;
 | 
			
		||||
		init.name = kasprintf(GFP_KERNEL, "%s:%s:%04x:%d",
 | 
			
		||||
				      node->parent->name, node->name,
 | 
			
		||||
				      reg_data->offset, 0);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue