net: ethernet: arc: add the missed clk_disable_unprepare
[ Upstream commit 4202e219edd6cc164c042e16fa327525410705ae ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
24523745ed
commit
1baab8352d
@@ -265,6 +265,9 @@ static int emac_rockchip_remove(struct platform_device *pdev)
|
|||||||
if (priv->regulator)
|
if (priv->regulator)
|
||||||
regulator_disable(priv->regulator);
|
regulator_disable(priv->regulator);
|
||||||
|
|
||||||
|
if (priv->soc_data->need_div_macclk)
|
||||||
|
clk_disable_unprepare(priv->macclk);
|
||||||
|
|
||||||
free_netdev(ndev);
|
free_netdev(ndev);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user