diff options
Diffstat (limited to 'drivers/net/wireless/libertas/tx.c')
-rw-r--r-- | drivers/net/wireless/libertas/tx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/libertas/tx.c b/drivers/net/wireless/libertas/tx.c index 7743d3f30f61..56d84027ec2b 100644 --- a/drivers/net/wireless/libertas/tx.c +++ b/drivers/net/wireless/libertas/tx.c | |||
@@ -116,7 +116,7 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb) | |||
116 | else | 116 | else |
117 | memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); | 117 | memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); |
118 | 118 | ||
119 | lbs_dbg_hex("txpd", (u8 *) plocaltxpd, sizeof(struct txpd)); | 119 | lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) plocaltxpd, sizeof(struct txpd)); |
120 | 120 | ||
121 | if (IS_MESH_FRAME(skb)) { | 121 | if (IS_MESH_FRAME(skb)) { |
122 | plocaltxpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); | 122 | plocaltxpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); |
@@ -126,7 +126,7 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb) | |||
126 | 126 | ||
127 | ptr += sizeof(struct txpd); | 127 | ptr += sizeof(struct txpd); |
128 | 128 | ||
129 | lbs_dbg_hex("Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); | 129 | lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
130 | memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); | 130 | memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
131 | ret = priv->hw_host_to_card(priv, MVMS_DAT, | 131 | ret = priv->hw_host_to_card(priv, MVMS_DAT, |
132 | priv->adapter->tmptxbuf, | 132 | priv->adapter->tmptxbuf, |
@@ -218,7 +218,7 @@ int libertas_process_tx(wlan_private * priv, struct sk_buff *skb) | |||
218 | int ret = -1; | 218 | int ret = -1; |
219 | 219 | ||
220 | lbs_deb_enter(LBS_DEB_TX); | 220 | lbs_deb_enter(LBS_DEB_TX); |
221 | lbs_dbg_hex("TX Data", skb->data, min_t(unsigned int, skb->len, 100)); | 221 | lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100)); |
222 | 222 | ||
223 | if (priv->dnld_sent) { | 223 | if (priv->dnld_sent) { |
224 | lbs_pr_alert( "TX error: dnld_sent = %d, not sending\n", | 224 | lbs_pr_alert( "TX error: dnld_sent = %d, not sending\n", |