From af7c2d4145b57c15d25a092cfb5a91708c72b541 Mon Sep 17 00:00:00 2001 From: Claudiu Beznea Date: Thu, 9 Jun 2022 11:42:46 +0300 Subject: [PATCH] spi: atmel-quadspi: align condition to parenthesis Align condition to parenthesis. Signed-off-by: Claudiu Beznea Link: https://lore.kernel.org/r/20220609084246.1795419-4-claudiu.beznea@microchip.com Signed-off-by: Mark Brown --- drivers/spi/atmel-quadspi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/atmel-quadspi.c b/drivers/spi/atmel-quadspi.c index dea8a0311aaa8..976a217e356d5 100644 --- a/drivers/spi/atmel-quadspi.c +++ b/drivers/spi/atmel-quadspi.c @@ -286,7 +286,7 @@ static bool atmel_qspi_supports_op(struct spi_mem *mem, /* special case not supported by hardware */ if (op->addr.nbytes == 2 && op->cmd.buswidth != op->addr.buswidth && - op->dummy.nbytes == 0) + op->dummy.nbytes == 0) return false; return true;