diff mbox

[v2,10/23] spi: fsl-espi: remove unneeded check in fsl_espi_do_trans

Message ID a246d482-9c6c-72ce-5179-f661de42cb5b@gmail.com (mailing list archive)
State Accepted
Commit 71581a1507e642bbc6f698a3f43355552ee8056f
Headers show

Commit Message

Heiner Kallweit Sept. 2, 2016, 8:24 p.m. UTC
SPI core takes care that both values are always populated.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
v2:
- switch order of patches to do trivial changes first
  (was patch 14 of the series before)
---
 drivers/spi/spi-fsl-espi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/spi/spi-fsl-espi.c b/drivers/spi/spi-fsl-espi.c
index 51696a6..8e6ef9b 100644
--- a/drivers/spi/spi-fsl-espi.c
+++ b/drivers/spi/spi-fsl-espi.c
@@ -300,8 +300,7 @@  static void fsl_espi_do_trans(struct spi_message *m,
 	trans.tx_buf = espi_trans->tx_buf;
 	trans.rx_buf = espi_trans->rx_buf;
 
-	if (trans.bits_per_word || trans.speed_hz)
-		fsl_espi_setup_transfer(spi, &trans);
+	fsl_espi_setup_transfer(spi, &trans);
 
 	if (trans.len)
 		status = fsl_espi_bufs(spi, &trans);