We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f0ced commit 9140ce4Copy full SHA for 9140ce4
drivers/dma/idma64.c
@@ -171,6 +171,10 @@ static irqreturn_t idma64_irq(int irq, void *dev)
171
u32 status_err;
172
unsigned short i;
173
174
+ /* Since IRQ may be shared, check if DMA controller is powered on */
175
+ if (status == GENMASK(31, 0))
176
+ return IRQ_NONE;
177
+
178
dev_vdbg(idma64->dma.dev, "%s: status=%#x\n", __func__, status);
179
180
/* Check if we have any interrupt from the DMA controller */
0 commit comments