net: luton: remove address translation after ofnode_read_resource
Removed call of ofnode_translate_address() after ofnode_read_resource in luton_switch.c:luton_probe(); it is unnecessary since the commitfeb7ac457c("dm: core: Add address translation in fdt_get_resource"). Fixes:feb7ac457c("dm: core: Add address translation in fdt_get_resource") Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Reported-by: Horatiu Vultur <horatiu.vultur@microchip.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
This commit is contained in:
		
							parent
							
								
									ca2f948a4b
								
							
						
					
					
						commit
						0d1ab576f2
					
				|  | @ -588,7 +588,6 @@ static int luton_probe(struct udevice *dev) | ||||||
| 	struct luton_private *priv = dev_get_priv(dev); | 	struct luton_private *priv = dev_get_priv(dev); | ||||||
| 	int i, ret; | 	int i, ret; | ||||||
| 	struct resource res; | 	struct resource res; | ||||||
| 	fdt32_t faddr; |  | ||||||
| 	phys_addr_t addr_base; | 	phys_addr_t addr_base; | ||||||
| 	unsigned long addr_size; | 	unsigned long addr_size; | ||||||
| 	ofnode eth_node, node, mdio_node; | 	ofnode eth_node, node, mdio_node; | ||||||
|  | @ -658,9 +657,7 @@ static int luton_probe(struct udevice *dev) | ||||||
| 
 | 
 | ||||||
| 		if (ofnode_read_resource(mdio_node, 0, &res)) | 		if (ofnode_read_resource(mdio_node, 0, &res)) | ||||||
| 			return -ENOMEM; | 			return -ENOMEM; | ||||||
| 		faddr = cpu_to_fdt32(res.start); | 		addr_base = res.start; | ||||||
| 
 |  | ||||||
| 		addr_base = ofnode_translate_address(mdio_node, &faddr); |  | ||||||
| 		addr_size = res.end - res.start; | 		addr_size = res.end - res.start; | ||||||
| 
 | 
 | ||||||
| 		/* If the bus is new then create a new bus */ | 		/* If the bus is new then create a new bus */ | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue