diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/txrx.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/txrx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/txrx.c b/drivers/net/wireless/ath/ath6kl/txrx.c index ab9a5c15f616..9dfd7f56d043 100644 --- a/drivers/net/wireless/ath/ath6kl/txrx.c +++ b/drivers/net/wireless/ath/ath6kl/txrx.c | |||
@@ -606,8 +606,9 @@ void ath6kl_tx_complete(void *context, struct list_head *packet_queue) | |||
606 | 606 | ||
607 | vif->net_stats.tx_errors++; | 607 | vif->net_stats.tx_errors++; |
608 | 608 | ||
609 | if (status != -ENOSPC) | 609 | if (status != -ENOSPC && status != -ECANCELED) |
610 | ath6kl_err("tx error, status: 0x%x\n", status); | 610 | ath6kl_warn("tx complete error: %d\n", status); |
611 | |||
611 | ath6kl_dbg(ATH6KL_DBG_WLAN_TX, | 612 | ath6kl_dbg(ATH6KL_DBG_WLAN_TX, |
612 | "%s: skb=0x%p data=0x%p len=0x%x eid=%d %s\n", | 613 | "%s: skb=0x%p data=0x%p len=0x%x eid=%d %s\n", |
613 | __func__, skb, packet->buf, packet->act_len, | 614 | __func__, skb, packet->buf, packet->act_len, |