mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 06:37:59 +00:00
rtlwifi: Remove extra argument from queue setup routine
Remove unused argument hw from call to rtl_tid_to_ac(). Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
c334e25c9f
commit
2a00def4d6
3 changed files with 3 additions and 3 deletions
|
@ -167,7 +167,7 @@ static const u8 tid_to_ac[] = {
|
||||||
0, /* IEEE80211_AC_VO */
|
0, /* IEEE80211_AC_VO */
|
||||||
};
|
};
|
||||||
|
|
||||||
u8 rtl_tid_to_ac(struct ieee80211_hw *hw, u8 tid)
|
u8 rtl_tid_to_ac(u8 tid)
|
||||||
{
|
{
|
||||||
return tid_to_ac[tid];
|
return tid_to_ac[tid];
|
||||||
}
|
}
|
||||||
|
|
|
@ -138,7 +138,7 @@ int rtl_send_smps_action(struct ieee80211_hw *hw,
|
||||||
enum ieee80211_smps_mode smps);
|
enum ieee80211_smps_mode smps);
|
||||||
u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie);
|
u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie);
|
||||||
void rtl_recognize_peer(struct ieee80211_hw *hw, u8 *data, unsigned int len);
|
void rtl_recognize_peer(struct ieee80211_hw *hw, u8 *data, unsigned int len);
|
||||||
u8 rtl_tid_to_ac(struct ieee80211_hw *hw, u8 tid);
|
u8 rtl_tid_to_ac(u8 tid);
|
||||||
extern struct attribute_group rtl_attribute_group;
|
extern struct attribute_group rtl_attribute_group;
|
||||||
int rtlwifi_rate_mapping(struct ieee80211_hw *hw,
|
int rtlwifi_rate_mapping(struct ieee80211_hw *hw,
|
||||||
bool isht, u8 desc_rate, bool first_ampdu);
|
bool isht, u8 desc_rate, bool first_ampdu);
|
||||||
|
|
|
@ -480,7 +480,7 @@ static void _rtl_pci_tx_chk_waitq(struct ieee80211_hw *hw)
|
||||||
|
|
||||||
/* we juse use em for BE/BK/VI/VO */
|
/* we juse use em for BE/BK/VI/VO */
|
||||||
for (tid = 7; tid >= 0; tid--) {
|
for (tid = 7; tid >= 0; tid--) {
|
||||||
u8 hw_queue = ac_to_hwq[rtl_tid_to_ac(hw, tid)];
|
u8 hw_queue = ac_to_hwq[rtl_tid_to_ac(tid)];
|
||||||
struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[hw_queue];
|
struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[hw_queue];
|
||||||
while (!mac->act_scanning &&
|
while (!mac->act_scanning &&
|
||||||
rtlpriv->psc.rfpwr_state == ERFON) {
|
rtlpriv->psc.rfpwr_state == ERFON) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue