Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f098003a authored by Iyappan Subramanian's avatar Iyappan Subramanian Committed by David S. Miller
Browse files

drivers: net: xgene: Remove return statement from void function



commit 183db4 ("drivers: net: xgene: Correct probe sequence handling")
changed the return type of xgene_enet_check_phy_handle() to void.

This patch, removes the return statement from the last line.

Signed-off-by: default avatarIyappan Subramanian <isubramanian@apm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5e338b36
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1674,8 +1674,6 @@ static void xgene_enet_check_phy_handle(struct xgene_enet_pdata *pdata)
	ret = xgene_enet_phy_connect(pdata->ndev);
	if (!ret)
		pdata->mdio_driver = true;

	return;
}

static void xgene_enet_gpiod_get(struct xgene_enet_pdata *pdata)