From 80b4a1ed38013629f59ab8c5a7a85048ad7816d4 Mon Sep 17 00:00:00 2001 From: Fancy Fang Date: Mon, 21 Aug 2017 19:07:57 +0800 Subject: [PATCH] MLK-16242-2 video: fbdev: dcss: correct some irq indexes The hw irq index for DEC400D, DTRC2 and DTRC3 should be '15', '16' and '17'. So correct the corresponding macro definitions in DCSS driver. Signed-off-by: Fancy Fang --- drivers/video/fbdev/mxc/imx_dcss.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/fbdev/mxc/imx_dcss.c b/drivers/video/fbdev/mxc/imx_dcss.c index a78fb27e44a0..5672e7574138 100644 --- a/drivers/video/fbdev/mxc/imx_dcss.c +++ b/drivers/video/fbdev/mxc/imx_dcss.c @@ -155,9 +155,9 @@ #define IRQ_DPR_CH2 4 #define IRQ_DPR_CH3 5 #define IRQ_CTX_LD 6 -#define IRQ_DEC400D_CH1 7 -#define IRQ_DTRC_CH2 8 -#define IRQ_DTRC_CH3 9 +#define IRQ_DEC400D_CH1 15 +#define IRQ_DTRC_CH2 16 +#define IRQ_DTRC_CH3 17 /* ctxld irqs status */ #define RD_ERR (1 << 16) -- 2.17.1