projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bd2c86
)
spi: bcm2835aux: Call the dedicated transfer completion function.
author
Vincent Pelletier
<plr.vincent@gmail.com>
Thu, 7 Jan 2021 23:58:31 +0000
(23:58 +0000)
committer
Mark Brown
<broonie@kernel.org>
Thu, 14 Jan 2021 14:27:40 +0000
(14:27 +0000)
spi_finalize_current_transfer currently only calls "complete", so no
functional change is expected.
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
Link:
https://lore.kernel.org/r/2636096a3b40febf680f9fff33944a5480561df9.1610062884.git.plr.vincent@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-bcm2835aux.c
patch
|
blob
|
history
diff --git
a/drivers/spi/spi-bcm2835aux.c
b/drivers/spi/spi-bcm2835aux.c
index 1a26865c42f83c594d4fcbb1b049336afcc0db83..75589ac6e95f9820c2bfc47d5a637b26b4eb8335 100644
(file)
--- a/
drivers/spi/spi-bcm2835aux.c
+++ b/
drivers/spi/spi-bcm2835aux.c
@@
-254,7
+254,7
@@
static irqreturn_t bcm2835aux_spi_interrupt(int irq, void *dev_id)
/* and if rx_len is 0 then disable interrupts and wake up completion */
if (!bs->rx_len) {
bcm2835aux_wr(bs, BCM2835_AUX_SPI_CNTL1, bs->cntl[1]);
-
complete(&master->xfer_completion
);
+
spi_finalize_current_transfer(master
);
}
return IRQ_HANDLED;