Commit b97c57ff authored by Sujith Manoharan's avatar Sujith Manoharan Committed by John W. Linville

ath9k_htc: Sync struct ath9k_htc_target_sta with FW

Signed-off-by: default avatarSujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 40dc9e4b
...@@ -104,17 +104,6 @@ struct tx_beacon_header { ...@@ -104,17 +104,6 @@ struct tx_beacon_header {
u16 rev; u16 rev;
} __packed; } __packed;
struct ath9k_htc_target_hw {
u32 flags;
u32 flags_ext;
u32 ampdu_limit;
u8 ampdu_subframes;
u8 tx_chainmask;
u8 tx_chainmask_legacy;
u8 rtscts_ratecode;
u8 protmode;
} __packed;
struct ath9k_htc_cap_target { struct ath9k_htc_cap_target {
u32 flags; u32 flags;
u32 flags_ext; u32 flags_ext;
...@@ -146,27 +135,16 @@ struct ath9k_htc_target_vif { ...@@ -146,27 +135,16 @@ struct ath9k_htc_target_vif {
#define ATH_HTC_STA_ERP 0x0004 #define ATH_HTC_STA_ERP 0x0004
#define ATH_HTC_STA_HT 0x0008 #define ATH_HTC_STA_HT 0x0008
/* FIXME: UAPSD variables */
struct ath9k_htc_target_sta { struct ath9k_htc_target_sta {
u16 associd;
u16 txpower;
u32 ucastkey;
u8 macaddr[ETH_ALEN]; u8 macaddr[ETH_ALEN];
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
u8 sta_index; u8 sta_index;
u8 vif_index; u8 vif_index;
u8 vif_sta;
__be16 flags; /* ATH_HTC_STA_* */
u16 htcap;
u8 valid;
u16 capinfo;
struct ath9k_htc_target_hw *hw;
struct ath9k_htc_target_vif *vif;
u16 txseqmgmt;
u8 is_vif_sta; u8 is_vif_sta;
u16 maxampdu; __be16 flags; /* ATH_HTC_STA_* */
u16 iv16; __be16 htcap;
u32 iv32; __be16 maxampdu;
u8 pad;
} __packed; } __packed;
struct ath9k_htc_target_aggr { struct ath9k_htc_target_aggr {
......
...@@ -382,7 +382,7 @@ static int ath9k_htc_add_monitor_interface(struct ath9k_htc_priv *priv) ...@@ -382,7 +382,7 @@ static int ath9k_htc_add_monitor_interface(struct ath9k_htc_priv *priv)
tsta.is_vif_sta = 1; tsta.is_vif_sta = 1;
tsta.sta_index = sta_idx; tsta.sta_index = sta_idx;
tsta.vif_index = hvif.index; tsta.vif_index = hvif.index;
tsta.maxampdu = 0xffff; tsta.maxampdu = cpu_to_be16(0xffff);
WMI_CMD_BUF(WMI_NODE_CREATE_CMDID, &tsta); WMI_CMD_BUF(WMI_NODE_CREATE_CMDID, &tsta);
if (ret) { if (ret) {
...@@ -463,9 +463,7 @@ static int ath9k_htc_add_station(struct ath9k_htc_priv *priv, ...@@ -463,9 +463,7 @@ static int ath9k_htc_add_station(struct ath9k_htc_priv *priv,
ista = (struct ath9k_htc_sta *) sta->drv_priv; ista = (struct ath9k_htc_sta *) sta->drv_priv;
memcpy(&tsta.macaddr, sta->addr, ETH_ALEN); memcpy(&tsta.macaddr, sta->addr, ETH_ALEN);
memcpy(&tsta.bssid, common->curbssid, ETH_ALEN); memcpy(&tsta.bssid, common->curbssid, ETH_ALEN);
tsta.associd = common->curaid;
tsta.is_vif_sta = 0; tsta.is_vif_sta = 0;
tsta.valid = true;
ista->index = sta_idx; ista->index = sta_idx;
} else { } else {
memcpy(&tsta.macaddr, vif->addr, ETH_ALEN); memcpy(&tsta.macaddr, vif->addr, ETH_ALEN);
...@@ -474,7 +472,7 @@ static int ath9k_htc_add_station(struct ath9k_htc_priv *priv, ...@@ -474,7 +472,7 @@ static int ath9k_htc_add_station(struct ath9k_htc_priv *priv,
tsta.sta_index = sta_idx; tsta.sta_index = sta_idx;
tsta.vif_index = avp->index; tsta.vif_index = avp->index;
tsta.maxampdu = 0xffff; tsta.maxampdu = cpu_to_be16(0xffff);
if (sta && sta->ht_cap.ht_supported) if (sta && sta->ht_cap.ht_supported)
tsta.flags = cpu_to_be16(ATH_HTC_STA_HT); tsta.flags = cpu_to_be16(ATH_HTC_STA_HT);
......
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