Commit 3d0763c0 authored by Jorge A. Ventura's avatar Jorge A. Ventura Committed by Mark Brown
Browse files

spi/omap-mcspi: Fix the spi task hangs waiting dma_rx



The spi hangs waiting the completion of omap2_mcspi_rx_callback.

Signed-off-by: default avatarJorge A. Ventura <jorge.araujo.ventura@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
Cc: stable@vger.kernel.org
parent fab6a041
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -329,7 +329,8 @@ static void omap2_mcspi_set_fifo(const struct spi_device *spi,
disable_fifo:
	if (t->rx_buf != NULL)
		chconf &= ~OMAP2_MCSPI_CHCONF_FFER;
	else

	if (t->tx_buf != NULL)
		chconf &= ~OMAP2_MCSPI_CHCONF_FFET;

	mcspi_write_chconf0(spi, chconf);