diff options
Diffstat (limited to 'drivers/net/wireless/ath/carl9170/main.c')
| -rw-r--r-- | drivers/net/wireless/ath/carl9170/main.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/carl9170/main.c b/drivers/net/wireless/ath/carl9170/main.c index 76e84adf57c1..101295162967 100644 --- a/drivers/net/wireless/ath/carl9170/main.c +++ b/drivers/net/wireless/ath/carl9170/main.c @@ -1306,8 +1306,8 @@ static int carl9170_op_sta_add(struct ieee80211_hw *hw,  	atomic_set(&sta_info->pending_frames, 0); -	if (sta->ht_cap.ht_supported) { -		if (sta->ht_cap.ampdu_density > 6) { +	if (sta->deflink.ht_cap.ht_supported) { +		if (sta->deflink.ht_cap.ampdu_density > 6) {  			/*  			 * HW does support 16us AMPDU density.  			 * No HT-Xmit for station. @@ -1319,7 +1319,7 @@ static int carl9170_op_sta_add(struct ieee80211_hw *hw,  		for (i = 0; i < ARRAY_SIZE(sta_info->agg); i++)  			RCU_INIT_POINTER(sta_info->agg[i], NULL); -		sta_info->ampdu_max_len = 1 << (3 + sta->ht_cap.ampdu_factor); +		sta_info->ampdu_max_len = 1 << (3 + sta->deflink.ht_cap.ampdu_factor);  		sta_info->ht_sta = true;  	} @@ -1335,7 +1335,7 @@ static int carl9170_op_sta_remove(struct ieee80211_hw *hw,  	unsigned int i;  	bool cleanup = false; -	if (sta->ht_cap.ht_supported) { +	if (sta->deflink.ht_cap.ht_supported) {  		sta_info->ht_sta = false;  |