summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuti Amonkar <yuti.amonkar@samsung.com>2024-01-09 11:12:08 +0530
committerTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-01-12 05:44:47 +0000
commit5437a68f9c55991aa3e2c51f687c2e2bc2aa733f (patch)
tree17b71d8fdf4843c2ebd9a217b5424584679bf061
parentdcac0a0d9b36251b290d5c687b9d24f5de4d7fa0 (diff)
downloaddisplay-5437a68f9c55991aa3e2c51f687c2e2bc2aa733f.tar.gz
drm: samsung: cal_9865: Fix the dma irq mask all shift
Fix the IDMA_ALL_IRQ_MASK macro. Bug: 318813262 Change-Id: I3178b15e9260637113f22fcb90d67bc7273202b0 Signed-off-by: Yuti Amonkar <yuti.amonkar@samsung.com> (cherry picked from commit 9d1766b93fe81bcb321f24b4bda6608fca894ffa)
-rw-r--r--samsung/cal_9865/regs-dpp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/samsung/cal_9865/regs-dpp.h b/samsung/cal_9865/regs-dpp.h
index 225e7de..fd2762e 100644
--- a/samsung/cal_9865/regs-dpp.h
+++ b/samsung/cal_9865/regs-dpp.h
@@ -66,7 +66,7 @@
#define IDMA_READ_SLAVE_ERR_MASK (1 << 4)
#define IDMA_DEADLOCK_MASK (1 << 2)
#define IDMA_FRAME_DONE_MASK (1 << 1)
-#define IDMA_ALL_IRQ_MASK (0xDFB << 16)
+#define IDMA_ALL_IRQ_MASK (0xDFB << 1)
#define IDMA_IRQ_ENABLE (1 << 0)