aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPontus Fuchs <[email protected]>2016-04-18 22:00:49 -0700
committerKalle Valo <[email protected]>2016-04-25 20:37:05 +0300
commit6d9cf123cd79277c65605faff8d25dbdd1b6ca64 (patch)
tree20f85c211a2d5a4c613098d97cafe2539741ca54
parentdf98c3294bdf1fc3094f5466accf6423ce968a74 (diff)
wcn36xx: Use allocated self sta index instead of hard coded
Signed-off-by: Pontus Fuchs <[email protected]> Signed-off-by: Bjorn Andersson <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
-rw-r--r--drivers/net/wireless/ath/wcn36xx/smd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/wcn36xx/smd.c b/drivers/net/wireless/ath/wcn36xx/smd.c
index ebb446272d21..e0d5631657c1 100644
--- a/drivers/net/wireless/ath/wcn36xx/smd.c
+++ b/drivers/net/wireless/ath/wcn36xx/smd.c
@@ -200,7 +200,7 @@ static void wcn36xx_smd_set_sta_params(struct wcn36xx *wcn,
sta_params->sta_index = WCN36XX_HAL_STA_INVALID_IDX;
} else {
sta_params->type = 0;
- sta_params->sta_index = 1;
+ sta_params->sta_index = vif_priv->self_sta_index;
}
sta_params->listen_interval = WCN36XX_LISTEN_INTERVAL(wcn);