diff options
| -rw-r--r-- | drivers/spi/spi-sh-msiof.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index 887c2084130f..543075b80f16 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -693,9 +693,9 @@ static int sh_msiof_dma_once(struct sh_msiof_spi_priv *p, const void *tx,  	reinit_completion(&p->done);  	/* Now start DMA */ -	if (tx) -		dma_async_issue_pending(p->master->dma_rx);  	if (rx) +		dma_async_issue_pending(p->master->dma_rx); +	if (tx)  		dma_async_issue_pending(p->master->dma_tx);  	ret = sh_msiof_spi_start(p, rx); | 
