mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 01:06:46 +09:00
rtl8xxxu: Enable data frame reception in rtl8xxxu_start
mac80211 documentation says, the ieee80211_ops.start callback "must turn on frame reception (for possibly enabled monitor interfaces.)". If not a single monitor interface does not receive data frames. Similarly we should not change the data reception based on the association state. Signed-off-by: Bruno Randolf <br1@einfach.org> Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
committed by
Kalle Valo
parent
755bda116e
commit
c85ea1156d
@@ -4521,9 +4521,6 @@ rtl8xxxu_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||||
|
||||
rtl8xxxu_update_rate_mask(priv, ramask, sgi);
|
||||
|
||||
/* Enable RX of data frames */
|
||||
rtl8xxxu_write16(priv, REG_RXFLTMAP2, 0xffff);
|
||||
|
||||
rtl8xxxu_write8(priv, REG_BCN_MAX_ERR, 0xff);
|
||||
|
||||
rtl8723a_stop_tx_beacon(priv);
|
||||
@@ -4538,8 +4535,6 @@ rtl8xxxu_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||||
val8 |= BEACON_DISABLE_TSF_UPDATE;
|
||||
rtl8xxxu_write8(priv, REG_BEACON_CTRL, val8);
|
||||
|
||||
/* Disable RX of data frames */
|
||||
rtl8xxxu_write16(priv, REG_RXFLTMAP2, 0x0000);
|
||||
h2c.joinbss.data = H2C_JOIN_BSS_DISCONNECT;
|
||||
}
|
||||
h2c.joinbss.cmd = H2C_JOIN_BSS_REPORT;
|
||||
@@ -5542,12 +5537,9 @@ static int rtl8xxxu_start(struct ieee80211_hw *hw)
|
||||
}
|
||||
exit:
|
||||
/*
|
||||
* Disable all data frames
|
||||
*/
|
||||
rtl8xxxu_write16(priv, REG_RXFLTMAP2, 0x0000);
|
||||
/*
|
||||
* Accept all mgmt frames
|
||||
* Accept all data and mgmt frames
|
||||
*/
|
||||
rtl8xxxu_write16(priv, REG_RXFLTMAP2, 0xffff);
|
||||
rtl8xxxu_write16(priv, REG_RXFLTMAP0, 0xffff);
|
||||
|
||||
rtl8xxxu_write32(priv, REG_OFDM0_XA_AGC_CORE1, 0x6954341e);
|
||||
|
||||
Reference in New Issue
Block a user