diff options
author | Claudiu Beznea <claudiu.beznea@microchip.com> | 2022-06-09 11:42:46 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-06-09 14:20:05 +0300 |
commit | af7c2d4145b57c15d25a092cfb5a91708c72b541 (patch) | |
tree | 480db5cffd902b0e5edfb14c4f84d44a7ff151e7 /drivers/spi/atmel-quadspi.c | |
parent | f11ec1cc46e38f0feac3721a03c21fa99167e329 (diff) | |
download | linux-af7c2d4145b57c15d25a092cfb5a91708c72b541.tar.xz |
spi: atmel-quadspi: align condition to parenthesis
Align condition to parenthesis.
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20220609084246.1795419-4-claudiu.beznea@microchip.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/atmel-quadspi.c')
-rw-r--r-- | drivers/spi/atmel-quadspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/atmel-quadspi.c b/drivers/spi/atmel-quadspi.c index dea8a0311aaa..976a217e356d 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; |