
6 Aug
2019
6 Aug
'19
12:38 p.m.
Currently stop is being called unconditionally without even checking if start is called which will result in crash where multiple instances are present and stop gets called even without calling start.
Signed-off-by: Keerthy j-keerthy@ti.com --- net/eth-uclass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/eth-uclass.c b/net/eth-uclass.c index f11c307b8c..58d6f26e04 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -557,7 +557,8 @@ static int eth_pre_remove(struct udevice *dev) { struct eth_pdata *pdata = dev->platdata;
- eth_get_ops(dev)->stop(dev); + if (eth_is_active(dev)) + eth_get_ops(dev)->stop(dev);
/* clear the MAC address */ memset(pdata->enetaddr, 0, ARP_HLEN);
--
2.17.1