diff options
Diffstat (limited to 'drivers/net/ethernet/xilinx/xilinx_emaclite.c')
| -rw-r--r-- | drivers/net/ethernet/xilinx/xilinx_emaclite.c | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c index 007840d4a807..d9d58a7dabee 100644 --- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -1115,7 +1115,6 @@ static int xemaclite_of_probe(struct platform_device *ofdev)  	struct net_device *ndev = NULL;  	struct net_local *lp = NULL;  	struct device *dev = &ofdev->dev; -	const void *mac_address;  	int rc = 0; @@ -1157,12 +1156,9 @@ static int xemaclite_of_probe(struct platform_device *ofdev)  	lp->next_rx_buf_to_use = 0x0;  	lp->tx_ping_pong = get_bool(ofdev, "xlnx,tx-ping-pong");  	lp->rx_ping_pong = get_bool(ofdev, "xlnx,rx-ping-pong"); -	mac_address = of_get_mac_address(ofdev->dev.of_node); -	if (!IS_ERR(mac_address)) { -		/* Set the MAC address. */ -		ether_addr_copy(ndev->dev_addr, mac_address); -	} else { +	rc = of_get_mac_address(ofdev->dev.of_node, ndev->dev_addr); +	if (rc) {  		dev_warn(dev, "No MAC address found, using random\n");  		eth_hw_addr_random(ndev);  	} | 
