Skip to content

Commit 0a29b3d

Browse files
tklauserdavem330
authored andcommitted
net: bcmgenet: Fix compile warning
bcmgenet_wol_resume() is only used in bcmgenet_resume(), which is only defined when CONFIG_PM_SLEEP is enabled. This leads to the following compile warning when building with !CONFIG_PM_SLEEP: drivers/net/ethernet/broadcom/genet/bcmgenet.c:1967:12: warning: ‘bcmgenet_wol_resume’ defined but not used [-Wunused-function] Since bcmgenet_resume() is the only user of bcmgenet_wol_resume(), fix this by directly inlining the function there. Reported-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 8280bf0 commit 0a29b3d

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

drivers/net/ethernet/broadcom/genet/bcmgenet.c

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2017,19 +2017,6 @@ static void bcmgenet_set_hw_addr(struct bcmgenet_priv *priv,
20172017
bcmgenet_umac_writel(priv, (addr[4] << 8) | addr[5], UMAC_MAC1);
20182018
}
20192019

2020-
static int bcmgenet_wol_resume(struct bcmgenet_priv *priv)
2021-
{
2022-
/* From WOL-enabled suspend, switch to regular clock */
2023-
if (priv->wolopts)
2024-
clk_disable_unprepare(priv->clk_wol);
2025-
2026-
phy_init_hw(priv->phydev);
2027-
/* Speed settings must be restored */
2028-
bcmgenet_mii_config(priv->dev);
2029-
2030-
return 0;
2031-
}
2032-
20332020
/* Returns a reusable dma control register value */
20342021
static u32 bcmgenet_dma_disable(struct bcmgenet_priv *priv)
20352022
{
@@ -2683,9 +2670,13 @@ static int bcmgenet_resume(struct device *d)
26832670
if (ret)
26842671
goto out_clk_disable;
26852672

2686-
ret = bcmgenet_wol_resume(priv);
2687-
if (ret)
2688-
goto out_clk_disable;
2673+
/* From WOL-enabled suspend, switch to regular clock */
2674+
if (priv->wolopts)
2675+
clk_disable_unprepare(priv->clk_wol);
2676+
2677+
phy_init_hw(priv->phydev);
2678+
/* Speed settings must be restored */
2679+
bcmgenet_mii_config(priv->dev);
26892680

26902681
/* disable ethernet MAC while updating its registers */
26912682
umac_enable_set(priv, CMD_TX_EN | CMD_RX_EN, false);

0 commit comments

Comments
 (0)