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

Commit 228fb087 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

net/spider_net: fix error return code in spider_net_open()



Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 59b626e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1990,7 +1990,8 @@ spider_net_open(struct net_device *netdev)
		goto alloc_rx_failed;

	/* Allocate rx skbs */
	if (spider_net_alloc_rx_skbs(card))
	result = spider_net_alloc_rx_skbs(card);
	if (result)
		goto alloc_skbs_failed;

	spider_net_set_multi(netdev);