summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2015-10-27 21:14:26 +0100
committerBjørn Mork <bjorn@mork.no>2015-10-27 21:14:26 +0100
commite919ea07ee51e7114c771270730a319d70cf01a4 (patch)
tree576ba377fd74c82f3fc9521cda737c90a77b7964
parentd02ac48b8a0dd929e74cc3c4730e2afe2dd3eca1 (diff)
mwlwifi: more debug log on amsdu operation
Signed-off-by: Bjørn Mork <bjorn@mork.no>
-rw-r--r--tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tx.c b/tx.c
index 3334c77..d053134 100644
--- a/tx.c
+++ b/tx.c
@@ -619,7 +619,7 @@ static inline struct sk_buff *mwl_tx_do_amsdu(struct mwl_priv *priv,
dev_dbg(&priv->hw->wiphy->dev, "%pM amsdu->num=%u, tx_skb->len=%zu, amsdu->skb->len=%zu", sta->addr, amsdu->num, tx_skb->len, amsdu->skb->len);
if (amsdu->skb->len < 100)
- dev_dbg(&priv->hw->wiphy->dev, "%pM amsdu: %*ph", sta->addr, (int)amsdu->skb->len, amsdu->skb->data)
+ dev_dbg(&priv->hw->wiphy->dev, "%pM amsdu: %*ph", sta->addr, (int)amsdu->skb->len, amsdu->skb->data);
return NULL;
}