mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	clk: ti: Use of_address_to_resource()
Replace of_get_address() and of_translate_address() calls with single call to of_address_to_resource(). Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230319163217.226144-1-robh@kernel.org Reviewed-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
		
							parent
							
								
									5b1a1c1ab1
								
							
						
					
					
						commit
						81fe523af7
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -512,16 +512,16 @@ static void __init _ti_omap4_clkctrl_setup(struct device_node *node) | |||
| 	struct clk_hw_omap *hw; | ||||
| 	struct clk *clk; | ||||
| 	struct omap_clkctrl_clk *clkctrl_clk = NULL; | ||||
| 	const __be32 *addrp; | ||||
| 	bool legacy_naming; | ||||
| 	const char *clkctrl_name; | ||||
| 	u32 addr; | ||||
| 	int ret; | ||||
| 	char *c; | ||||
| 	u16 soc_mask = 0; | ||||
| 	struct resource res; | ||||
| 
 | ||||
| 	addrp = of_get_address(node, 0, NULL, NULL); | ||||
| 	addr = (u32)of_translate_address(node, addrp); | ||||
| 	of_address_to_resource(node, 0, &res); | ||||
| 	addr = (u32)res.start; | ||||
| 
 | ||||
| #ifdef CONFIG_ARCH_OMAP4 | ||||
| 	if (of_machine_is_compatible("ti,omap4")) | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Rob Herring
						Rob Herring