aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-11-26 10:29:04 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-12-03 03:29:41 -0500
commit34273620d9227b61b82257e56d2d190abb9de2d8 (patch)
tree082fe63f2968ebd076441ec4a960dcb5231117cc /drivers/gpu/drm
parent0794aed3028544e10997e14aa7685ec10a5b4203 (diff)
drm/i915: Tune down spurious CRC interrupt warning
We don't really synchronously turn them off from debugfs. We try to avoid hitting them too badly by waiting one vblank, but apparently the irq handler can still race through that gap. Since this isn't really all that important for testcases, only for debugging CRC issues let's tune it down to a debug message. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82602 Cc: Damien Lespiau <damien.lespiau@intel.com> Acked-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/i915/i915_irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index c02648f32a76..4eea1818b1ab 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -1621,7 +1621,7 @@ static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1621 1621
1622 if (!pipe_crc->entries) { 1622 if (!pipe_crc->entries) {
1623 spin_unlock(&pipe_crc->lock); 1623 spin_unlock(&pipe_crc->lock);
1624 DRM_ERROR("spurious interrupt\n"); 1624 DRM_DEBUG_KMS("spurious interrupt\n");
1625 return; 1625 return;
1626 } 1626 }
1627 1627