wcn36xx: swallow two wcn3620 IND messages
WCN3620 can asynchronously send two new kinds of indication message, since we can't handle them just accept them quietly. Signed-off-by: Andy Green <andy.green@linaro.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
9193adebc4
commit
df0d436476
@ -2128,6 +2128,8 @@ static void wcn36xx_smd_rsp_process(struct wcn36xx *wcn, void *buf, size_t len)
|
||||
complete(&wcn->hal_rsp_compl);
|
||||
break;
|
||||
|
||||
case WCN36XX_HAL_COEX_IND:
|
||||
case WCN36XX_HAL_AVOID_FREQ_RANGE_IND:
|
||||
case WCN36XX_HAL_OTA_TX_COMPL_IND:
|
||||
case WCN36XX_HAL_MISSED_BEACON_IND:
|
||||
case WCN36XX_HAL_DELETE_STA_CONTEXT_IND:
|
||||
@ -2174,6 +2176,9 @@ static void wcn36xx_ind_smd_work(struct work_struct *work)
|
||||
msg_header = (struct wcn36xx_hal_msg_header *)hal_ind_msg->msg;
|
||||
|
||||
switch (msg_header->msg_type) {
|
||||
case WCN36XX_HAL_COEX_IND:
|
||||
case WCN36XX_HAL_AVOID_FREQ_RANGE_IND:
|
||||
break;
|
||||
case WCN36XX_HAL_OTA_TX_COMPL_IND:
|
||||
wcn36xx_smd_tx_compl_ind(wcn,
|
||||
hal_ind_msg->msg,
|
||||
|
Loading…
Reference in New Issue
Block a user