aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTudor Ambarus <[email protected]>2024-02-07 12:04:22 +0000
committerMark Brown <[email protected]>2024-02-08 16:33:32 +0000
commit9d47e411f4d636519a8d26587928d34cf52c0c1f (patch)
tree28101bb8c9f03c0b1982f9ed8443a5abcf2bad2a
parent271f18816b3ba2f75785660e427c16585b7302f2 (diff)
spi: s3c64xx: remove else after return
Else case is not needed after a return, remove it. Reviewed-by: Andi Shyti <[email protected]> Reviewed-by: Sam Protsenko <[email protected]> Signed-off-by: Tudor Ambarus <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--drivers/spi/spi-s3c64xx.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index 3f8fc9d5a508..fc0fe81ac95f 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -408,12 +408,10 @@ static bool s3c64xx_spi_can_dma(struct spi_controller *host,
{
struct s3c64xx_spi_driver_data *sdd = spi_controller_get_devdata(host);
- if (sdd->rx_dma.ch && sdd->tx_dma.ch) {
+ if (sdd->rx_dma.ch && sdd->tx_dma.ch)
return xfer->len > FIFO_DEPTH(sdd);
- } else {
- return false;
- }
+ return false;
}
static int s3c64xx_enable_datapath(struct s3c64xx_spi_driver_data *sdd,