mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00
wifi: rtw88: sdio: map mgmt frames to queue TX_DESC_QSEL_MGMT
The rtw88-sdio do not work in AP mode due to the lack of TX status report
for management frames.
Map the management frames to queue TX_DESC_QSEL_MGMT, which enables the
chip to generate TX reports for these frames
Tested-on: rtl8723ds
Fixes: 65371a3f14
("wifi: rtw88: sdio: Add HCI implementation for SDIO based chipsets")
Signed-off-by: Zhen XIN <zhen.xin@nokia-sbell.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20250410154217.1849977-3-zhen.xin@nokia-sbell.com
This commit is contained in:
parent
581cf3a9cb
commit
b2effcdc23
1 changed files with 1 additions and 4 deletions
|
@ -718,10 +718,7 @@ static u8 rtw_sdio_get_tx_qsel(struct rtw_dev *rtwdev, struct sk_buff *skb,
|
|||
case RTW_TX_QUEUE_H2C:
|
||||
return TX_DESC_QSEL_H2C;
|
||||
case RTW_TX_QUEUE_MGMT:
|
||||
if (rtw_chip_wcpu_11n(rtwdev))
|
||||
return TX_DESC_QSEL_HIGH;
|
||||
else
|
||||
return TX_DESC_QSEL_MGMT;
|
||||
return TX_DESC_QSEL_MGMT;
|
||||
case RTW_TX_QUEUE_HI0:
|
||||
return TX_DESC_QSEL_HIGH;
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue