print "RX " and "TX " in front of hexdump Signed-off-by: Bruno Randolf <bruno@xxxxxxxxxxxxx> --- drivers/net/wireless/ath5k/base.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index 2f2ae33..15004b2 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c @@ -478,7 +478,7 @@ accept: rxs.rate = ds->ds_rxstat.rs_rate; rxs.flag |= ath_rx_decrypted(sc, ds, skb); - ath_dump_skb(skb, "r"); + ath_dump_skb(skb, "RX "); __ieee80211_rx(sc->hw, skb, &rxs); sc->led_rxrate = ds->ds_rxstat.rs_rate; @@ -1221,7 +1221,7 @@ static int ath_tx(struct ieee80211_hw *hw, struct sk_buff *skb, int hdrlen; int pad; - ath_dump_skb(skb, "t"); + ath_dump_skb(skb, "TX "); if (sc->opmode == IEEE80211_IF_TYPE_MNTR) DPRINTF(sc, ATH_DEBUG_XMIT, "tx in monitor (scan?)\n"); @@ -1623,7 +1623,7 @@ static int ath_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb, struct ath_softc *sc = hw->priv; int ret; - ath_dump_skb(skb, "b"); + ath_dump_skb(skb, "BC "); mutex_lock(&sc->lock); -- 1.5.3.4 - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html