mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
driver: net: ldpaa: Update priv->phydev after free()
Even after memory free of phydev, priv is still pointing to the obsolete address. So update priv->phydev as NULL after memory free. Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Signed-off-by: Ashish Kumar <Ashish.Kumar@nxp.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
d2c3197922
commit
a5fe87e829
1 changed files with 3 additions and 1 deletions
|
@ -587,8 +587,10 @@ static void ldpaa_eth_stop(struct eth_device *net_dev)
|
|||
#ifdef CONFIG_PHYLIB
|
||||
if (priv->phydev && bus != NULL)
|
||||
phy_shutdown(priv->phydev);
|
||||
else
|
||||
else {
|
||||
free(priv->phydev);
|
||||
priv->phydev = NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
ldpaa_dpbp_free();
|
||||
|
|
Loading…
Reference in a new issue