diff options
Diffstat (limited to 'drivers/net/wireless/ath9k')
-rw-r--r-- | drivers/net/wireless/ath9k/core.c | 3 | ||||
-rw-r--r-- | drivers/net/wireless/ath9k/hw.c | 5 | ||||
-rw-r--r-- | drivers/net/wireless/ath9k/main.c | 19 | ||||
-rw-r--r-- | drivers/net/wireless/ath9k/rc.c | 9 | ||||
-rw-r--r-- | drivers/net/wireless/ath9k/xmit.c | 1 |
5 files changed, 14 insertions, 23 deletions
diff --git a/drivers/net/wireless/ath9k/core.c b/drivers/net/wireless/ath9k/core.c index c5033f6f42ac..0089e023c609 100644 --- a/drivers/net/wireless/ath9k/core.c +++ b/drivers/net/wireless/ath9k/core.c | |||
@@ -1325,7 +1325,6 @@ struct ath_node *ath_node_attach(struct ath_softc *sc, u8 *addr, int if_id) | |||
1325 | { | 1325 | { |
1326 | struct ath_vap *avp; | 1326 | struct ath_vap *avp; |
1327 | struct ath_node *an; | 1327 | struct ath_node *an; |
1328 | DECLARE_MAC_BUF(mac); | ||
1329 | 1328 | ||
1330 | avp = sc->sc_vaps[if_id]; | 1329 | avp = sc->sc_vaps[if_id]; |
1331 | ASSERT(avp != NULL); | 1330 | ASSERT(avp != NULL); |
@@ -1355,8 +1354,6 @@ void ath_node_detach(struct ath_softc *sc, struct ath_node *an, bool bh_flag) | |||
1355 | { | 1354 | { |
1356 | unsigned long flags; | 1355 | unsigned long flags; |
1357 | 1356 | ||
1358 | DECLARE_MAC_BUF(mac); | ||
1359 | |||
1360 | ath_chainmask_sel_timerstop(&an->an_chainmask_sel); | 1357 | ath_chainmask_sel_timerstop(&an->an_chainmask_sel); |
1361 | an->an_flags |= ATH_NODE_CLEAN; | 1358 | an->an_flags |= ATH_NODE_CLEAN; |
1362 | ath_tx_node_cleanup(sc, an, bh_flag); | 1359 | ath_tx_node_cleanup(sc, an, bh_flag); |
diff --git a/drivers/net/wireless/ath9k/hw.c b/drivers/net/wireless/ath9k/hw.c index 98bc25c9b3cf..d5b513e134ab 100644 --- a/drivers/net/wireless/ath9k/hw.c +++ b/drivers/net/wireless/ath9k/hw.c | |||
@@ -1291,7 +1291,6 @@ static int ath9k_hw_init_macaddr(struct ath_hal *ah) | |||
1291 | int i; | 1291 | int i; |
1292 | u16 eeval; | 1292 | u16 eeval; |
1293 | struct ath_hal_5416 *ahp = AH5416(ah); | 1293 | struct ath_hal_5416 *ahp = AH5416(ah); |
1294 | DECLARE_MAC_BUF(mac); | ||
1295 | 1294 | ||
1296 | sum = 0; | 1295 | sum = 0; |
1297 | for (i = 0; i < 3; i++) { | 1296 | for (i = 0; i < 3; i++) { |
@@ -1302,8 +1301,8 @@ static int ath9k_hw_init_macaddr(struct ath_hal *ah) | |||
1302 | } | 1301 | } |
1303 | if (sum == 0 || sum == 0xffff * 3) { | 1302 | if (sum == 0 || sum == 0xffff * 3) { |
1304 | DPRINTF(ah->ah_sc, ATH_DBG_EEPROM, | 1303 | DPRINTF(ah->ah_sc, ATH_DBG_EEPROM, |
1305 | "%s: mac address read failed: %s\n", __func__, | 1304 | "%s: mac address read failed: %pM\n", __func__, |
1306 | print_mac(mac, ahp->ah_macaddr)); | 1305 | ahp->ah_macaddr); |
1307 | return -EADDRNOTAVAIL; | 1306 | return -EADDRNOTAVAIL; |
1308 | } | 1307 | } |
1309 | 1308 | ||
diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c index f05f584ab7bc..186d75acb326 100644 --- a/drivers/net/wireless/ath9k/main.c +++ b/drivers/net/wireless/ath9k/main.c | |||
@@ -362,7 +362,6 @@ static void ath9k_bss_assoc_info(struct ath_softc *sc, | |||
362 | struct ieee80211_channel *curchan = hw->conf.channel; | 362 | struct ieee80211_channel *curchan = hw->conf.channel; |
363 | struct ath_vap *avp; | 363 | struct ath_vap *avp; |
364 | int pos; | 364 | int pos; |
365 | DECLARE_MAC_BUF(mac); | ||
366 | 365 | ||
367 | if (bss_conf->assoc) { | 366 | if (bss_conf->assoc) { |
368 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Bss Info ASSOC %d\n", | 367 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Bss Info ASSOC %d\n", |
@@ -397,9 +396,9 @@ static void ath9k_bss_assoc_info(struct ath_softc *sc, | |||
397 | ath_update_chainmask(sc, bss_conf->assoc_ht); | 396 | ath_update_chainmask(sc, bss_conf->assoc_ht); |
398 | 397 | ||
399 | DPRINTF(sc, ATH_DBG_CONFIG, | 398 | DPRINTF(sc, ATH_DBG_CONFIG, |
400 | "%s: bssid %s aid 0x%x\n", | 399 | "%s: bssid %pM aid 0x%x\n", |
401 | __func__, | 400 | __func__, |
402 | print_mac(mac, sc->sc_curbssid), sc->sc_curaid); | 401 | sc->sc_curbssid, sc->sc_curaid); |
403 | 402 | ||
404 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Set channel: %d MHz\n", | 403 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Set channel: %d MHz\n", |
405 | __func__, | 404 | __func__, |
@@ -1278,7 +1277,6 @@ static int ath9k_config_interface(struct ieee80211_hw *hw, | |||
1278 | struct ath_vap *avp; | 1277 | struct ath_vap *avp; |
1279 | u32 rfilt = 0; | 1278 | u32 rfilt = 0; |
1280 | int error, i; | 1279 | int error, i; |
1281 | DECLARE_MAC_BUF(mac); | ||
1282 | 1280 | ||
1283 | avp = sc->sc_vaps[0]; | 1281 | avp = sc->sc_vaps[0]; |
1284 | if (avp == NULL) { | 1282 | if (avp == NULL) { |
@@ -1333,9 +1331,9 @@ static int ath9k_config_interface(struct ieee80211_hw *hw, | |||
1333 | sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS); | 1331 | sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS); |
1334 | 1332 | ||
1335 | DPRINTF(sc, ATH_DBG_CONFIG, | 1333 | DPRINTF(sc, ATH_DBG_CONFIG, |
1336 | "%s: RX filter 0x%x bssid %s aid 0x%x\n", | 1334 | "%s: RX filter 0x%x bssid %pM aid 0x%x\n", |
1337 | __func__, rfilt, | 1335 | __func__, rfilt, |
1338 | print_mac(mac, sc->sc_curbssid), sc->sc_curaid); | 1336 | sc->sc_curbssid, sc->sc_curaid); |
1339 | 1337 | ||
1340 | /* need to reconfigure the beacon */ | 1338 | /* need to reconfigure the beacon */ |
1341 | sc->sc_flags &= ~SC_OP_BEACONS ; | 1339 | sc->sc_flags &= ~SC_OP_BEACONS ; |
@@ -1424,7 +1422,6 @@ static void ath9k_sta_notify(struct ieee80211_hw *hw, | |||
1424 | struct ath_softc *sc = hw->priv; | 1422 | struct ath_softc *sc = hw->priv; |
1425 | struct ath_node *an; | 1423 | struct ath_node *an; |
1426 | unsigned long flags; | 1424 | unsigned long flags; |
1427 | DECLARE_MAC_BUF(mac); | ||
1428 | 1425 | ||
1429 | spin_lock_irqsave(&sc->node_lock, flags); | 1426 | spin_lock_irqsave(&sc->node_lock, flags); |
1430 | an = ath_node_find(sc, sta->addr); | 1427 | an = ath_node_find(sc, sta->addr); |
@@ -1435,8 +1432,8 @@ static void ath9k_sta_notify(struct ieee80211_hw *hw, | |||
1435 | spin_lock_irqsave(&sc->node_lock, flags); | 1432 | spin_lock_irqsave(&sc->node_lock, flags); |
1436 | if (!an) { | 1433 | if (!an) { |
1437 | ath_node_attach(sc, sta->addr, 0); | 1434 | ath_node_attach(sc, sta->addr, 0); |
1438 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Attach a node: %s\n", | 1435 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Attach a node: %pM\n", |
1439 | __func__, print_mac(mac, sta->addr)); | 1436 | __func__, sta->addr); |
1440 | } else { | 1437 | } else { |
1441 | ath_node_get(sc, sta->addr); | 1438 | ath_node_get(sc, sta->addr); |
1442 | } | 1439 | } |
@@ -1449,9 +1446,9 @@ static void ath9k_sta_notify(struct ieee80211_hw *hw, | |||
1449 | __func__); | 1446 | __func__); |
1450 | else { | 1447 | else { |
1451 | ath_node_put(sc, an, ATH9K_BH_STATUS_INTACT); | 1448 | ath_node_put(sc, an, ATH9K_BH_STATUS_INTACT); |
1452 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Put a node: %s\n", | 1449 | DPRINTF(sc, ATH_DBG_CONFIG, "%s: Put a node: %pM\n", |
1453 | __func__, | 1450 | __func__, |
1454 | print_mac(mac, sta->addr)); | 1451 | sta->addr); |
1455 | } | 1452 | } |
1456 | break; | 1453 | break; |
1457 | default: | 1454 | default: |
diff --git a/drivers/net/wireless/ath9k/rc.c b/drivers/net/wireless/ath9k/rc.c index cca2fc5b0765..b1e535b8ec48 100644 --- a/drivers/net/wireless/ath9k/rc.c +++ b/drivers/net/wireless/ath9k/rc.c | |||
@@ -1942,7 +1942,6 @@ static void ath_get_rate(void *priv, struct ieee80211_supported_band *sband, | |||
1942 | s8 lowest_idx; | 1942 | s8 lowest_idx; |
1943 | __le16 fc = hdr->frame_control; | 1943 | __le16 fc = hdr->frame_control; |
1944 | u8 *qc, tid; | 1944 | u8 *qc, tid; |
1945 | DECLARE_MAC_BUF(mac); | ||
1946 | 1945 | ||
1947 | DPRINTF(sc, ATH_DBG_RATE, "%s\n", __func__); | 1946 | DPRINTF(sc, ATH_DBG_RATE, "%s\n", __func__); |
1948 | 1947 | ||
@@ -2003,14 +2002,14 @@ static void ath_get_rate(void *priv, struct ieee80211_supported_band *sband, | |||
2003 | if (ret) | 2002 | if (ret) |
2004 | DPRINTF(sc, ATH_DBG_AGGR, | 2003 | DPRINTF(sc, ATH_DBG_AGGR, |
2005 | "%s: Unable to start tx " | 2004 | "%s: Unable to start tx " |
2006 | "aggr for: %s\n", | 2005 | "aggr for: %pM\n", |
2007 | __func__, | 2006 | __func__, |
2008 | print_mac(mac, hdr->addr1)); | 2007 | hdr->addr1); |
2009 | else | 2008 | else |
2010 | DPRINTF(sc, ATH_DBG_AGGR, | 2009 | DPRINTF(sc, ATH_DBG_AGGR, |
2011 | "%s: Started tx aggr for: %s\n", | 2010 | "%s: Started tx aggr for: %pM\n", |
2012 | __func__, | 2011 | __func__, |
2013 | print_mac(mac, hdr->addr1)); | 2012 | hdr->addr1); |
2014 | } else if (chk == AGGR_EXCHANGE_PROGRESS) | 2013 | } else if (chk == AGGR_EXCHANGE_PROGRESS) |
2015 | ath_tx_aggr_resp(sc, sband, sta, an, tid); | 2014 | ath_tx_aggr_resp(sc, sband, sta, an, tid); |
2016 | } | 2015 | } |
diff --git a/drivers/net/wireless/ath9k/xmit.c b/drivers/net/wireless/ath9k/xmit.c index 3a4757942b3f..13866043dec9 100644 --- a/drivers/net/wireless/ath9k/xmit.c +++ b/drivers/net/wireless/ath9k/xmit.c | |||
@@ -2416,7 +2416,6 @@ enum ATH_AGGR_CHECK ath_tx_aggr_check(struct ath_softc *sc, | |||
2416 | u8 tidno) | 2416 | u8 tidno) |
2417 | { | 2417 | { |
2418 | struct ath_atx_tid *txtid; | 2418 | struct ath_atx_tid *txtid; |
2419 | DECLARE_MAC_BUF(mac); | ||
2420 | 2419 | ||
2421 | if (!(sc->sc_flags & SC_OP_TXAGGR)) | 2420 | if (!(sc->sc_flags & SC_OP_TXAGGR)) |
2422 | return AGGR_NOT_REQUIRED; | 2421 | return AGGR_NOT_REQUIRED; |