]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
brcmsmac: remove brcms_bss_cfg->cur_etheraddr
authorHauke Mehrtens <hauke@hauke-m.de>
Sun, 24 Mar 2013 00:45:55 +0000 (01:45 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 27 Mar 2013 17:37:35 +0000 (13:37 -0400)
use brcms_pub->cur_etheraddr instead

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/brcm80211/brcmsmac/main.c
drivers/net/wireless/brcm80211/brcmsmac/main.h

index 9af5851587e504585ed7c2ed29a020f5c1cf5a31..056ca2cf2936abe08846302066b11e687fa84160 100644 (file)
@@ -3764,7 +3764,7 @@ static int brcms_c_set_mac(struct brcms_bss_cfg *bsscfg)
        struct brcms_c_info *wlc = bsscfg->wlc;
 
        /* enter the MAC addr into the RXE match registers */
-       brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, bsscfg->cur_etheraddr);
+       brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, wlc->pub->cur_etheraddr);
 
        brcms_c_ampdu_macaddr_upd(wlc);
 
@@ -7355,7 +7355,7 @@ brcms_c_bcn_prb_template(struct brcms_c_info *wlc, u16 type,
        /* A1 filled in by MAC for prb resp, broadcast for bcn */
        if (type == IEEE80211_STYPE_BEACON)
                memcpy(&h->da, &ether_bcast, ETH_ALEN);
-       memcpy(&h->sa, &cfg->cur_etheraddr, ETH_ALEN);
+       memcpy(&h->sa, &wlc->pub->cur_etheraddr, ETH_ALEN);
        memcpy(&h->bssid, &cfg->BSSID, ETH_ALEN);
 
        /* SEQ filled in by MAC */
index 65818e2593d36eff9ef39218390489ec104cf300..397cff3cea579a16945a5556dd1fa7080c5c0ec8 100644 (file)
@@ -606,7 +606,6 @@ struct brcms_bss_cfg {
        u8 SSID_len;
        u8 SSID[IEEE80211_MAX_SSID_LEN];
        u8 BSSID[ETH_ALEN];
-       u8 cur_etheraddr[ETH_ALEN];
        struct brcms_bss_info *current_bss;
 };