From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiner Kallweit Subject: [PATCH 14/23] spi: fsl-espi: remove unneeded check in fsl_espi_do_trans Date: Thu, 25 Aug 2016 06:48:48 +0200 Message-ID: <2378fe6e-29de-a874-4a19-f75bc9af7f1d@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: "linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" To: Mark Brown Return-path: In-Reply-To: Sender: linux-spi-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: SPI core takes care that both values are always populated. Signed-off-by: Heiner Kallweit --- drivers/spi/spi-fsl-espi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/spi/spi-fsl-espi.c b/drivers/spi/spi-fsl-espi.c index 6d06e14..4c64012 100644 --- a/drivers/spi/spi-fsl-espi.c +++ b/drivers/spi/spi-fsl-espi.c @@ -284,8 +284,7 @@ static int fsl_espi_do_trans(struct spi_message *m, struct spi_transfer *trans) trans->delay_usecs = max(first->delay_usecs, t->delay_usecs); } - if (trans->bits_per_word || trans->speed_hz) - fsl_espi_setup_transfer(spi, trans); + fsl_espi_setup_transfer(spi, trans); if (trans->len) ret = fsl_espi_bufs(spi, trans); -- 2.9.2 -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html