diff options
author | Eliad Peller <eliad@wizery.com> | 2011-04-05 19:21:31 +0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-05-02 11:25:53 +0400 |
commit | a20a5b7e48e24c1bf9c10ba27cb1862f8f777d00 (patch) | |
tree | 6b0f5aefccd478eebe81b22513925e31d36e1e52 /drivers/net/wireless/wl12xx | |
parent | b03acadea4f46884aa3c3e4d3a6ce03d283525e6 (diff) | |
download | linux-a20a5b7e48e24c1bf9c10ba27cb1862f8f777d00.tar.xz |
wl12xx: print actual rx packet size (without padding)
When debugging, reduce the padding size from each rx packet, to
get the actual packet size (so comparing it against a cap file
will be easier)
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r-- | drivers/net/wireless/wl12xx/rx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/rx.c b/drivers/net/wireless/wl12xx/rx.c index 2a581495d5c9..faf5a1d3c2c3 100644 --- a/drivers/net/wireless/wl12xx/rx.c +++ b/drivers/net/wireless/wl12xx/rx.c @@ -121,7 +121,8 @@ static int wl1271_rx_handle_data(struct wl1271 *wl, u8 *data, u32 length) wl1271_rx_status(wl, desc, IEEE80211_SKB_RXCB(skb), beacon); - wl1271_debug(DEBUG_RX, "rx skb 0x%p: %d B %s", skb, skb->len, + wl1271_debug(DEBUG_RX, "rx skb 0x%p: %d B %s", skb, + skb->len - desc->pad_len, beacon ? "beacon" : ""); skb_trim(skb, skb->len - desc->pad_len); |