Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0aef029 authored by Grygorii Strashko's avatar Grygorii Strashko Committed by David S. Miller
Browse files

net: ethernet: ti: ale: disable ale from stop()



ALE is enabled from cpsw_ale_start() now, but disabled only from
cpsw_ale_destroy() which introduces inconsitance as cpsw_ale_start() is
called when netif[s] is opened, but cpsw_ale_destroy() is called when
driver is removed. Hence, move ALE disabling in cpsw_ale_stop().

Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4ff2c4bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -870,6 +870,7 @@ EXPORT_SYMBOL_GPL(cpsw_ale_start);
void cpsw_ale_stop(struct cpsw_ale *ale)
void cpsw_ale_stop(struct cpsw_ale *ale)
{
{
	del_timer_sync(&ale->timer);
	del_timer_sync(&ale->timer);
	cpsw_ale_control_set(ale, 0, ALE_ENABLE, 0);
}
}
EXPORT_SYMBOL_GPL(cpsw_ale_stop);
EXPORT_SYMBOL_GPL(cpsw_ale_stop);


@@ -892,7 +893,6 @@ int cpsw_ale_destroy(struct cpsw_ale *ale)
{
{
	if (!ale)
	if (!ale)
		return -EINVAL;
		return -EINVAL;
	cpsw_ale_control_set(ale, 0, ALE_ENABLE, 0);
	kfree(ale);
	kfree(ale);
	return 0;
	return 0;
}
}