forked from Minki/linux
ath9k_htc: use common WMM AC definitions instead of ath9k ones
Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
293f2ba897
commit
e8c35a77e3
@ -398,7 +398,7 @@ struct ath9k_htc_priv {
|
||||
|
||||
int beaconq;
|
||||
int cabq;
|
||||
int hwq_map[ATH9K_WME_AC_VO+1];
|
||||
int hwq_map[WME_NUM_AC];
|
||||
|
||||
#ifdef CONFIG_ATH9K_HTC_DEBUGFS
|
||||
struct ath9k_debug debug;
|
||||
@ -431,8 +431,7 @@ int ath9k_tx_init(struct ath9k_htc_priv *priv);
|
||||
void ath9k_tx_tasklet(unsigned long data);
|
||||
int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb);
|
||||
void ath9k_tx_cleanup(struct ath9k_htc_priv *priv);
|
||||
bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv,
|
||||
enum ath9k_tx_queue_subtype qtype);
|
||||
bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, int subtype);
|
||||
int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv);
|
||||
int get_hw_qnum(u16 queue, int *hwq_map);
|
||||
int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum,
|
||||
|
@ -227,7 +227,7 @@ void ath9k_htc_beaconq_config(struct ath9k_htc_priv *priv)
|
||||
{
|
||||
struct ath_hw *ah = priv->ah;
|
||||
struct ath9k_tx_queue_info qi, qi_be;
|
||||
int qnum = priv->hwq_map[ATH9K_WME_AC_BE];
|
||||
int qnum = priv->hwq_map[WME_AC_BE];
|
||||
|
||||
memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
|
||||
memset(&qi_be, 0, sizeof(struct ath9k_tx_queue_info));
|
||||
|
@ -521,23 +521,23 @@ static int ath9k_init_queues(struct ath9k_htc_priv *priv)
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_BE)) {
|
||||
if (!ath9k_htc_txq_setup(priv, WME_AC_BE)) {
|
||||
ath_print(common, ATH_DBG_FATAL,
|
||||
"Unable to setup xmit queue for BE traffic\n");
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_BK)) {
|
||||
if (!ath9k_htc_txq_setup(priv, WME_AC_BK)) {
|
||||
ath_print(common, ATH_DBG_FATAL,
|
||||
"Unable to setup xmit queue for BK traffic\n");
|
||||
goto err;
|
||||
}
|
||||
if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_VI)) {
|
||||
if (!ath9k_htc_txq_setup(priv, WME_AC_VI)) {
|
||||
ath_print(common, ATH_DBG_FATAL,
|
||||
"Unable to setup xmit queue for VI traffic\n");
|
||||
goto err;
|
||||
}
|
||||
if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_VO)) {
|
||||
if (!ath9k_htc_txq_setup(priv, WME_AC_VO)) {
|
||||
ath_print(common, ATH_DBG_FATAL,
|
||||
"Unable to setup xmit queue for VO traffic\n");
|
||||
goto err;
|
||||
|
@ -1590,7 +1590,7 @@ static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue,
|
||||
}
|
||||
|
||||
if ((priv->ah->opmode == NL80211_IFTYPE_ADHOC) &&
|
||||
(qnum == priv->hwq_map[ATH9K_WME_AC_BE]))
|
||||
(qnum == priv->hwq_map[WME_AC_BE]))
|
||||
ath9k_htc_beaconq_config(priv);
|
||||
out:
|
||||
ath9k_htc_ps_restore(priv);
|
||||
|
@ -34,15 +34,15 @@ int get_hw_qnum(u16 queue, int *hwq_map)
|
||||
{
|
||||
switch (queue) {
|
||||
case 0:
|
||||
return hwq_map[ATH9K_WME_AC_VO];
|
||||
return hwq_map[WME_AC_VO];
|
||||
case 1:
|
||||
return hwq_map[ATH9K_WME_AC_VI];
|
||||
return hwq_map[WME_AC_VI];
|
||||
case 2:
|
||||
return hwq_map[ATH9K_WME_AC_BE];
|
||||
return hwq_map[WME_AC_BE];
|
||||
case 3:
|
||||
return hwq_map[ATH9K_WME_AC_BK];
|
||||
return hwq_map[WME_AC_BK];
|
||||
default:
|
||||
return hwq_map[ATH9K_WME_AC_BE];
|
||||
return hwq_map[WME_AC_BE];
|
||||
}
|
||||
}
|
||||
|
||||
@ -297,8 +297,7 @@ void ath9k_tx_cleanup(struct ath9k_htc_priv *priv)
|
||||
|
||||
}
|
||||
|
||||
bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv,
|
||||
enum ath9k_tx_queue_subtype subtype)
|
||||
bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, int subtype)
|
||||
{
|
||||
struct ath_hw *ah = priv->ah;
|
||||
struct ath_common *common = ath9k_hw_common(ah);
|
||||
|
Loading…
Reference in New Issue
Block a user