diff options
author | Eliad Peller <eliad@wizery.com> | 2012-03-04 03:55:55 -0500 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-03-05 08:45:26 -0500 |
commit | 8ccd16e6cb17a1e961617cc67798bbb222e4cd13 (patch) | |
tree | 0187eb8a1a5801b5877c530e1c9969fac094240d /drivers | |
parent | e9ba7152c1f5babd6ad9ad45619e0a10b4c08554 (diff) |
wl12xx: print the tx packet len
Add the packet length to the tx debug print.
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/wl12xx/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index 3c966f2e00d..95a76a5f9ee 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c | |||
@@ -1459,7 +1459,8 @@ static void wl1271_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb) | |||
1459 | goto out; | 1459 | goto out; |
1460 | } | 1460 | } |
1461 | 1461 | ||
1462 | wl1271_debug(DEBUG_TX, "queue skb hlid %d q %d", hlid, q); | 1462 | wl1271_debug(DEBUG_TX, "queue skb hlid %d q %d len %d", |
1463 | hlid, q, skb->len); | ||
1463 | skb_queue_tail(&wl->links[hlid].tx_queue[q], skb); | 1464 | skb_queue_tail(&wl->links[hlid].tx_queue[q], skb); |
1464 | 1465 | ||
1465 | wl->tx_queue_count[q]++; | 1466 | wl->tx_queue_count[q]++; |