net: sun8i_emac: Fix not calling dev_xxx with a device
Pass a udevice into a few functions so `dev` is defined. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
		
							parent
							
								
									e2f7421522
								
							
						
					
					
						commit
						ef043693c6
					
				|  | @ -663,7 +663,8 @@ static int sun8i_eth_write_hwaddr(struct udevice *dev) | ||||||
| 	return _sun8i_write_hwaddr(priv, pdata->enetaddr); | 	return _sun8i_write_hwaddr(priv, pdata->enetaddr); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| static int sun8i_emac_board_setup(struct emac_eth_dev *priv) | static int sun8i_emac_board_setup(struct udevice *dev, | ||||||
|  | 				  struct emac_eth_dev *priv) | ||||||
| { | { | ||||||
| 	int ret; | 	int ret; | ||||||
| 
 | 
 | ||||||
|  | @ -833,7 +834,7 @@ static int sun8i_emac_eth_probe(struct udevice *dev) | ||||||
| 
 | 
 | ||||||
| 	priv->mac_reg = (void *)pdata->iobase; | 	priv->mac_reg = (void *)pdata->iobase; | ||||||
| 
 | 
 | ||||||
| 	ret = sun8i_emac_board_setup(priv); | 	ret = sun8i_emac_board_setup(dev, priv); | ||||||
| 	if (ret) | 	if (ret) | ||||||
| 		return ret; | 		return ret; | ||||||
| 
 | 
 | ||||||
|  | @ -854,7 +855,7 @@ static const struct eth_ops sun8i_emac_eth_ops = { | ||||||
| 	.stop                   = sun8i_emac_eth_stop, | 	.stop                   = sun8i_emac_eth_stop, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| static int sun8i_get_ephy_nodes(struct emac_eth_dev *priv) | static int sun8i_get_ephy_nodes(struct udevice *dev, struct emac_eth_dev *priv) | ||||||
| { | { | ||||||
| 	int emac_node, ephy_node, ret, ephy_handle; | 	int emac_node, ephy_node, ret, ephy_handle; | ||||||
| 
 | 
 | ||||||
|  | @ -986,7 +987,7 @@ static int sun8i_emac_eth_ofdata_to_platdata(struct udevice *dev) | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	if (priv->variant == H3_EMAC) { | 	if (priv->variant == H3_EMAC) { | ||||||
| 		ret = sun8i_get_ephy_nodes(priv); | 		ret = sun8i_get_ephy_nodes(dev, priv); | ||||||
| 		if (ret) | 		if (ret) | ||||||
| 			return ret; | 			return ret; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue