mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-07 22:14:54 +07:00
staging: wilc1000: linux_mon.c: add to check routine
This patch adds the return value which needs the check and prints the error message when it fails. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d892c97c88
commit
2eaf35c141
@ -266,7 +266,9 @@ static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb,
|
||||
/* if source address and bssid fields are equal>>Mac header */
|
||||
/*send it to mgmt frames handler */
|
||||
if (!(memcmp(srcAdd, bssid, 6))) {
|
||||
mon_mgmt_tx(mon_priv->real_ndev, skb->data, skb->len);
|
||||
ret = mon_mgmt_tx(mon_priv->real_ndev, skb->data, skb->len);
|
||||
if (ret)
|
||||
netdev_err(dev, "fail to mgmt tx\n");
|
||||
dev_kfree_skb(skb);
|
||||
} else {
|
||||
ret = wilc_mac_xmit(skb, mon_priv->real_ndev);
|
||||
|
Loading…
Reference in New Issue
Block a user