diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_hw.c')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index adedb971654..7fa7ab0a4b2 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
@@ -2335,6 +2335,10 @@ static void prism2_txexc(local_info_t *local) | |||
2335 | int show_dump, res; | 2335 | int show_dump, res; |
2336 | char *payload = NULL; | 2336 | char *payload = NULL; |
2337 | struct hfa384x_tx_frame txdesc; | 2337 | struct hfa384x_tx_frame txdesc; |
2338 | DECLARE_MAC_BUF(mac); | ||
2339 | DECLARE_MAC_BUF(mac2); | ||
2340 | DECLARE_MAC_BUF(mac3); | ||
2341 | DECLARE_MAC_BUF(mac4); | ||
2338 | 2342 | ||
2339 | show_dump = local->frame_dump & PRISM2_DUMP_TXEXC_HDR; | 2343 | show_dump = local->frame_dump & PRISM2_DUMP_TXEXC_HDR; |
2340 | local->stats.tx_errors++; | 2344 | local->stats.tx_errors++; |
@@ -2400,10 +2404,9 @@ static void prism2_txexc(local_info_t *local) | |||
2400 | WLAN_FC_GET_STYPE(fc) >> 4, | 2404 | WLAN_FC_GET_STYPE(fc) >> 4, |
2401 | fc & IEEE80211_FCTL_TODS ? " ToDS" : "", | 2405 | fc & IEEE80211_FCTL_TODS ? " ToDS" : "", |
2402 | fc & IEEE80211_FCTL_FROMDS ? " FromDS" : ""); | 2406 | fc & IEEE80211_FCTL_FROMDS ? " FromDS" : ""); |
2403 | PDEBUG(DEBUG_EXTRA, " A1=" MACSTR " A2=" MACSTR " A3=" | 2407 | PDEBUG(DEBUG_EXTRA, " A1=%s A2=%s A3=%s A4=%s\n", |
2404 | MACSTR " A4=" MACSTR "\n", | 2408 | print_mac(mac, txdesc.addr1), print_mac(mac2, txdesc.addr2), |
2405 | MAC2STR(txdesc.addr1), MAC2STR(txdesc.addr2), | 2409 | print_mac(mac3, txdesc.addr3), print_mac(mac4, txdesc.addr4)); |
2406 | MAC2STR(txdesc.addr3), MAC2STR(txdesc.addr4)); | ||
2407 | } | 2410 | } |
2408 | 2411 | ||
2409 | 2412 | ||