forked from Minki/linux
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>
This commit is contained in:
parent
b03acadea4
commit
a20a5b7e48
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user