diff options
author | Magnus Lilja <lilja.magnus@gmail.com> | 2016-12-21 22:13:58 +0100 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2017-01-02 10:48:44 +0530 |
commit | adee40b265d7568296e218f079f478197ffa15bf (patch) | |
tree | c877bf9a58ea9a2b56ec0bc0e37f3ca50c20d28f /drivers/dma/ipu | |
parent | c4c5cd695fdeab96584b850415beb355f1509c19 (diff) | |
download | linux-adee40b265d7568296e218f079f478197ffa15bf.tar.bz2 |
dmaengine: ipu: Make sure the interrupt routine checks all interrupts.
Commit 3d8cc00073d6 ("dmaengine: ipu: Consolidate duplicated irq handlers")
consolidated the two interrupts routines into one, but the remaining
interrupt routine only checks the status of the error interrupts, not the
normal interrupts.
This patch fixes that problem (tested on i.MX31 PDK board).
Fixes: 3d8cc00073d6 ("dmaengine: ipu: Consolidate duplicated irq handlers")
Cc: Vinod Koul <vinod.koul@intel.com>
Cc: <stable@vger.kernel.org> # 4.1.x
Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ipu')
-rw-r--r-- | drivers/dma/ipu/ipu_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ipu/ipu_irq.c b/drivers/dma/ipu/ipu_irq.c index dd184b50e5b4..284627806b88 100644 --- a/drivers/dma/ipu/ipu_irq.c +++ b/drivers/dma/ipu/ipu_irq.c @@ -272,7 +272,7 @@ static void ipu_irq_handler(struct irq_desc *desc) u32 status; int i, line; - for (i = IPU_IRQ_NR_FN_BANKS; i < IPU_IRQ_NR_BANKS; i++) { + for (i = 0; i < IPU_IRQ_NR_BANKS; i++) { struct ipu_irq_bank *bank = irq_bank + i; raw_spin_lock(&bank_lock); |