summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Atkinson <latkinso@codeaurora.org>2016-12-01 16:23:45 -0500
committerAbhinav Kumar <abhinavk@codeaurora.org>2017-08-26 00:35:09 -0700
commit3d062c91d6b712862a39de267fbb6a3065d1f8fe (patch)
treeba7d8b93dc1eec189cdb5de9378651b462a9aae7
parent1239127b2a904bced185aa0b866dc72935848f04 (diff)
drm/msm/sde: move sde irq printing out of drm_debug area
Move the debug print in the sde core irq out of the general DRM DEBUG log area and into pr_debug directly to avoid flooding the DRM general logs. CRs-Fixed: 2005394 Change-Id: Ib9456bb49ed1d8c045f353b4a41f43575fc3fd03 Signed-off-by: Lloyd Atkinson <latkinso@codeaurora.org> Signed-off-by: Abhinav Kumar <abhinavk@codeaurora.org>
-rw-r--r--drivers/gpu/drm/msm/sde/sde_core_irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/sde/sde_core_irq.c b/drivers/gpu/drm/msm/sde/sde_core_irq.c
index dbfc2dd11a17..83c8982b2e00 100644
--- a/drivers/gpu/drm/msm/sde/sde_core_irq.c
+++ b/drivers/gpu/drm/msm/sde/sde_core_irq.c
@@ -32,7 +32,7 @@ static void sde_core_irq_callback_handler(void *arg, int irq_idx)
struct sde_irq_callback *cb;
unsigned long irq_flags;
- SDE_DEBUG("irq_idx=%d\n", irq_idx);
+ pr_debug("irq_idx=%d\n", irq_idx);
if (list_empty(&irq_obj->irq_cb_tbl[irq_idx]))
SDE_ERROR("irq_idx=%d has no registered callback\n", irq_idx);