mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 02:24:24 +02:00
wifi: ath10k: drop HTT_DATA_TX_STATUS_DOWNLOAD_FAIL
According to Jeff, 'HTT_DATA_TX_STATUS_DOWNLOAD_FAIL' from 'enum htt_data_tx_status' is never actually used by the firmware code and so may be dropped, with the related adjustment to 'ath10k_htt_rx_tx_compl_ind()'. Suggested-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> Found by Linux Verification Center (linuxtesting.org) with SVACE. Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> Link: https://lore.kernel.org/r/20230914160744.155903-1-dmantipov@yandex.ru
This commit is contained in:
parent
3f856f2955
commit
30e7099a6d
|
|
@ -880,8 +880,7 @@ enum htt_data_tx_status {
|
|||
HTT_DATA_TX_STATUS_OK = 0,
|
||||
HTT_DATA_TX_STATUS_DISCARD = 1,
|
||||
HTT_DATA_TX_STATUS_NO_ACK = 2,
|
||||
HTT_DATA_TX_STATUS_POSTPONE = 3, /* HL only */
|
||||
HTT_DATA_TX_STATUS_DOWNLOAD_FAIL = 128
|
||||
HTT_DATA_TX_STATUS_POSTPONE = 3 /* HL only */
|
||||
};
|
||||
|
||||
enum htt_data_tx_flags {
|
||||
|
|
|
|||
|
|
@ -2964,7 +2964,6 @@ static void ath10k_htt_rx_tx_compl_ind(struct ath10k *ar,
|
|||
break;
|
||||
case HTT_DATA_TX_STATUS_DISCARD:
|
||||
case HTT_DATA_TX_STATUS_POSTPONE:
|
||||
case HTT_DATA_TX_STATUS_DOWNLOAD_FAIL:
|
||||
tx_done.status = HTT_TX_COMPL_STATE_DISCARD;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user