It doesn't make much sense to enable the interrupts before posting rx buffers. Signed-off-by: Michal Kazior <michal.kazior@xxxxxxxxx> --- drivers/net/wireless/ath/ath10k/pci.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index c195a11..c157717 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -1039,24 +1039,18 @@ static int ath10k_pci_hif_start(struct ath10k *ar) ath10k_dbg(ATH10K_DBG_BOOT, "boot hif start\n"); - ath10k_ce_enable_interrupts(ar); - /* Post buffers once to start things off. */ ret = ath10k_pci_post_rx(ar); if (ret) { ath10k_warn("failed to post RX buffers for all pipes: %d\n", ret); - goto err_stop; + return ret; } + ath10k_ce_enable_interrupts(ar); ar_pci->started = 1; - return 0; -err_stop: - ath10k_ce_disable_interrupts(ar); - ath10k_pci_kill_tasklet(ar); - - return ret; + return 0; } static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info) -- 1.8.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html