aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChuhong Yuan <hslester96@gmail.com>2019-11-01 20:17:25 +0800
committerDavid S. Miller <davem@davemloft.net>2019-11-01 10:25:39 -0700
commit4202e219edd6cc164c042e16fa327525410705ae (patch)
tree86a017e1ef847781e94cc48dd209b97908d1e595 /drivers
parenttcp: increase tcp_max_syn_backlog max value (diff)
downloadlinux-dev-4202e219edd6cc164c042e16fa327525410705ae.tar.xz
linux-dev-4202e219edd6cc164c042e16fa327525410705ae.zip
net: ethernet: arc: add the missed clk_disable_unprepare
The remove misses to disable and unprepare priv->macclk like what is done when probe fails. Add the missed call in remove. Signed-off-by: Chuhong Yuan <hslester96@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/arc/emac_rockchip.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/arc/emac_rockchip.c b/drivers/net/ethernet/arc/emac_rockchip.c
index 42d2e1b02c44..664d664e0925 100644
--- a/drivers/net/ethernet/arc/emac_rockchip.c
+++ b/drivers/net/ethernet/arc/emac_rockchip.c
@@ -256,6 +256,9 @@ static int emac_rockchip_remove(struct platform_device *pdev)
if (priv->regulator)
regulator_disable(priv->regulator);
+ if (priv->soc_data->need_div_macclk)
+ clk_disable_unprepare(priv->macclk);
+
free_netdev(ndev);
return err;
}