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: call rtw_sdio_indicate_tx_status unconditionally
The rtw88-sdio do not work in AP mode due to the lack of TX status report
for management frames.
Make the invocation of rtw_sdio_indicate_tx_status unconditional and cover
all packet queues
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-2-zhen.xin@nokia-sbell.com
This commit is contained in:
parent
b2effcdc23
commit
fc5f5a0ec4
1 changed files with 1 additions and 4 deletions
|
@ -1224,10 +1224,7 @@ static void rtw_sdio_process_tx_queue(struct rtw_dev *rtwdev,
|
|||
return;
|
||||
}
|
||||
|
||||
if (queue <= RTW_TX_QUEUE_VO)
|
||||
rtw_sdio_indicate_tx_status(rtwdev, skb);
|
||||
else
|
||||
dev_kfree_skb_any(skb);
|
||||
rtw_sdio_indicate_tx_status(rtwdev, skb);
|
||||
}
|
||||
|
||||
static void rtw_sdio_tx_handler(struct work_struct *work)
|
||||
|
|
Loading…
Add table
Reference in a new issue