projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b2b24e
)
bcm2835-dma: Avoid losing CS flags after interrupt
author
Dom Cobley
<popcornmix@gmail.com>
Wed, 6 Jan 2021 18:16:10 +0000
(18:16 +0000)
committer
Dom Cobley
<popcornmix@gmail.com>
Mon, 21 Mar 2022 16:04:09 +0000
(16:04 +0000)
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
drivers/dma/bcm2835-dma.c
patch
|
blob
|
history
diff --git
a/drivers/dma/bcm2835-dma.c
b/drivers/dma/bcm2835-dma.c
index 0cbfa9d559a27e74a4dd0706eb4f1bfdce7aa8a6..9878d1bed5893782999593b9a54c835c639c7e35 100644
(file)
--- a/
drivers/dma/bcm2835-dma.c
+++ b/
drivers/dma/bcm2835-dma.c
@@
-704,7
+704,7
@@
static irqreturn_t bcm2835_dma_callback(int irq, void *data)
* if this IRQ handler is threaded.) If the channel is finished, it
* will remain idle despite the ACTIVE flag being set.
*/
- writel(BCM2835_DMA_INT | BCM2835_DMA_ACTIVE,
+ writel(BCM2835_DMA_INT | BCM2835_DMA_ACTIVE
| BCM2835_DMA_CS_FLAGS(c->dreq)
,
c->chan_base + BCM2835_DMA_CS);
d = c->desc;