From: Jonas Gorski Date: Sun, 17 Dec 2017 16:02:54 +0000 (+0100) Subject: bcm63xx_enet: remove pointless mac_id check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bbd62d24f936f8efab95dea583f6b69da4f036e2;p=linux.git bcm63xx_enet: remove pointless mac_id check Enabling the ephy clock for mac 1 is harmless, and the actual usage of the ephy is not restricted to mac 0, so we might as well remove the check. Signed-off-by: Jonas Gorski Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/broadcom/bcm63xx_enet.c b/drivers/net/ethernet/broadcom/bcm63xx_enet.c index e603a6fe63494..d4519c621d08d 100644 --- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c +++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c @@ -1787,7 +1787,7 @@ static int bcm_enet_probe(struct platform_device *pdev) priv->tx_chan = pd->tx_chan; } - if (priv->mac_id == 0 && priv->has_phy && !priv->use_external_mii) { + if (priv->has_phy && !priv->use_external_mii) { /* using internal PHY, enable clock */ priv->phy_clk = devm_clk_get(&pdev->dev, "ephy"); if (IS_ERR(priv->phy_clk)) {