Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d989eed2 authored by Gao Pan's avatar Gao Pan Committed by Mark Brown
Browse files

spi: fsl-lpspi: quit reading rx fifo under error condition



In case that error occurs during waiting for txfifo empty, it is
not necessary to read rx fifo. It's better to return directly.

Signed-off-by: default avatarGao Pan <pandy.gao@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent b6787b68
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -350,9 +350,12 @@ static int fsl_lpspi_transfer_one(struct spi_master *master,
	}

	ret = fsl_lpspi_txfifo_empty(fsl_lpspi);
	if (ret)
		return ret;

	fsl_lpspi_read_rx_fifo(fsl_lpspi);

	return ret;
	return 0;
}

static int fsl_lpspi_transfer_one_msg(struct spi_master *master,