Re: On status handling in ath10k_htt_rx_tx_compl_ind()

2023-09-14 Thread Jeff Johnson
On 9/13/2023 10:15 PM, Dmitry Antipov wrote: In 'ath10k_htt_rx_tx_compl_ind()', int status = MS(resp->data_tx_completion.flags, HTT_DATA_TX_STATUS); actually is int status = (((resp->data_tx_completion.flags) & 0x07) >> 0); which can't be equal to HTT_DATA_TX_STATUS_DOWNLOAD_FAIL (128)

On status handling in ath10k_htt_rx_tx_compl_ind()

2023-09-13 Thread Dmitry Antipov
In 'ath10k_htt_rx_tx_compl_ind()', int status = MS(resp->data_tx_completion.flags, HTT_DATA_TX_STATUS); actually is int status = (((resp->data_tx_completion.flags) & 0x07) >> 0); which can't be equal to HTT_DATA_TX_STATUS_DOWNLOAD_FAIL (128) regardless of the 'data_tx_completion.flags' value.