diff options
author | Liao Yuanhong <liaoyuanhong@vivo.com> | 2025-08-12 11:38:16 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-08-12 12:06:11 +0100 |
commit | 0ecc0e17f05bbb953b6ea3812e78bab224f08595 (patch) | |
tree | 210c5411a0a882a8126fe9c68bbfb9332b2fc90d | |
parent | a1d0b0ae65ae3f32597edfbb547f16c75601cd87 (diff) |
spi: bcm2835: Remove redundant semicolons
Remove unnecessary semicolons after comments.
Fixes: 3ecd37edaa2a6 ("spi: bcm2835: enable dma modes for transfers meeting certain conditions")
Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com>
Link: https://patch.msgid.link/20250812033817.487565-2-liaoyuanhong@vivo.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-bcm2835.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c index 77de5a07639a..192cc5ef65fb 100644 --- a/drivers/spi/spi-bcm2835.c +++ b/drivers/spi/spi-bcm2835.c @@ -622,7 +622,7 @@ static void bcm2835_spi_dma_rx_done(void *data) /* reset fifo and HW */ bcm2835_spi_reset_hw(bs); - /* and mark as completed */; + /* and mark as completed */ spi_finalize_current_transfer(ctlr); } |