drivers: net: xgene: Remove return statement from void function
authorIyappan Subramanian <isubramanian@apm.com>
Tue, 5 Sep 2017 18:16:32 +0000 (11:16 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 Sep 2017 21:58:25 +0000 (14:58 -0700)
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: Iyappan Subramanian <isubramanian@apm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/apm/xgene/xgene_enet_main.c

index 655c0fc..3b889ef 100644 (file)
@@ -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)