diff options
author | Shaohui Xie <Shaohui.Xie@freescale.com> | 2014-01-07 14:27:41 +0800 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2014-01-10 17:19:27 -0600 |
commit | a655f724df2c0e1634477c7e89da81477a691c0f (patch) | |
tree | b0ecfb9a8e9cdd1c24bd0ce1cdc4851263641994 /arch/powerpc/include | |
parent | 297649b9f516a840d56bc2df6dda5a6f9c50cea5 (diff) | |
download | linux-a655f724df2c0e1634477c7e89da81477a691c0f.tar.bz2 |
powerpc/85xx: handle the eLBC error interrupt if it exists in dts
On P1020, P1021, P1022, and P1023, eLBC event interrupts are routed
to internal interrupt 3 while ELBC error interrupts are routed to
internal interrupt 0. We need to call request_irq for each.
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Signed-off-by: Wang Dongsheng <dongsheng.wang@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
[scottwood@freescale.com: reworded commit message and fixed author]
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/fsl_lbc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/fsl_lbc.h b/arch/powerpc/include/asm/fsl_lbc.h index 420b45368fcf..067fb0dca549 100644 --- a/arch/powerpc/include/asm/fsl_lbc.h +++ b/arch/powerpc/include/asm/fsl_lbc.h @@ -285,7 +285,7 @@ struct fsl_lbc_ctrl { /* device info */ struct device *dev; struct fsl_lbc_regs __iomem *regs; - int irq; + int irq[2]; wait_queue_head_t irq_wait; spinlock_t lock; void *nand; |