Commit 70df0516 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Remove bssid from struct wmi

This is nothing but bssid of struct ath6kl.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent e4c7ffcb
...@@ -498,8 +498,6 @@ static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len) ...@@ -498,8 +498,6 @@ static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len)
ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM\n", ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM\n",
__func__, ev->ch, ev->bssid); __func__, ev->ch, ev->bssid);
memcpy(wmi->bssid, ev->bssid, ETH_ALEN);
/* Start of assoc rsp IEs */ /* Start of assoc rsp IEs */
pie = ev->assoc_info + ev->beacon_ie_len + pie = ev->assoc_info + ev->beacon_ie_len +
ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */ ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */
...@@ -546,7 +544,6 @@ static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len) ...@@ -546,7 +544,6 @@ static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len)
return -EINVAL; return -EINVAL;
ev = (struct wmi_disconnect_event *) datap; ev = (struct wmi_disconnect_event *) datap;
memset(wmi->bssid, 0, sizeof(wmi->bssid));
wmi->is_wmm_enabled = false; wmi->is_wmm_enabled = false;
wmi->pair_crypto_type = NONE_CRYPT; wmi->pair_crypto_type = NONE_CRYPT;
...@@ -772,7 +769,7 @@ static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len) ...@@ -772,7 +769,7 @@ static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len)
* instance value of scan result. It also sync up RSSI info * instance value of scan result. It also sync up RSSI info
* in GUI between scan result and RSSI signal icon. * in GUI between scan result and RSSI signal icon.
*/ */
if (memcmp(wmi->bssid, bih->bssid, ETH_ALEN) == 0) { if (memcmp(wmi->parent_dev->bssid, bih->bssid, ETH_ALEN) == 0) {
bih->rssi = a_cpu_to_sle16(bss->ni_rssi); bih->rssi = a_cpu_to_sle16(bss->ni_rssi);
bih->snr = bss->ni_snr; bih->snr = bss->ni_snr;
} }
...@@ -2253,7 +2250,7 @@ int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi) ...@@ -2253,7 +2250,7 @@ int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi)
void ath6kl_wmi_get_current_bssid(struct wmi *wmi, u8 *bssid) void ath6kl_wmi_get_current_bssid(struct wmi *wmi, u8 *bssid)
{ {
if (bssid) if (bssid)
memcpy(bssid, wmi->bssid, ETH_ALEN); memcpy(bssid, wmi->parent_dev->bssid, ETH_ALEN);
} }
int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 status, u8 preamble_policy) int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 status, u8 preamble_policy)
......
...@@ -116,7 +116,6 @@ struct wmi { ...@@ -116,7 +116,6 @@ struct wmi {
u8 fat_pipe_exist; u8 fat_pipe_exist;
struct ath6kl *parent_dev; struct ath6kl *parent_dev;
struct wmi_stats stat; struct wmi_stats stat;
u8 bssid[ETH_ALEN];
u8 pwr_mode; u8 pwr_mode;
u8 phy_mode; u8 phy_mode;
u8 keep_alive_intvl; u8 keep_alive_intvl;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment