aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fbdev/omap2/dss
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2015-11-23 13:22:36 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2015-12-29 04:06:30 -0500
commit00355412d1fb589503fb9d9b7631bb522d42ed4b (patch)
treed019644e6d36e67b3f09e5000cecf36664b5ed85 /drivers/video/fbdev/omap2/dss
parentb742648c499444e6a3044c9e8afb08956c9ca75c (diff)
OMAPDSS: DSI: cleanup DSI_IRQ_ERROR_MASK define
DSI_IRQ_SYNC_LOST was ORed twice so we can remove one. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev/omap2/dss')
-rw-r--r--drivers/video/fbdev/omap2/dss/dsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dsi.c b/drivers/video/fbdev/omap2/dss/dsi.c
index 59065e18444d..43be4b2a7b05 100644
--- a/drivers/video/fbdev/omap2/dss/dsi.c
+++ b/drivers/video/fbdev/omap2/dss/dsi.c
@@ -144,7 +144,7 @@ struct dsi_reg { u16 module; u16 idx; };
144#define DSI_IRQ_TA_TIMEOUT (1 << 20) 144#define DSI_IRQ_TA_TIMEOUT (1 << 20)
145#define DSI_IRQ_ERROR_MASK \ 145#define DSI_IRQ_ERROR_MASK \
146 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \ 146 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
147 DSI_IRQ_TA_TIMEOUT | DSI_IRQ_SYNC_LOST) 147 DSI_IRQ_TA_TIMEOUT)
148#define DSI_IRQ_CHANNEL_MASK 0xf 148#define DSI_IRQ_CHANNEL_MASK 0xf
149 149
150/* Virtual channel interrupts */ 150/* Virtual channel interrupts */