diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2014-08-06 14:50:02 +0300 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-08-06 22:39:31 +0200 |
commit | 96a9fdd778037799f63c9ae272ec915dd3ad83dc (patch) | |
tree | 4834f285e9e2a842e8c52d9c002f97d4f7755702 /drivers/gpu/drm/drm_irq.c | |
parent | d297e1037327884fe9545f434d720fd3e8f18c80 (diff) | |
download | talos-op-linux-96a9fdd778037799f63c9ae272ec915dd3ad83dc.tar.gz talos-op-linux-96a9fdd778037799f63c9ae272ec915dd3ad83dc.zip |
drm: Fix confusing debug message in drm_update_vblank_count()
Now that drm_update_vblank_count() can be called even when we're not
about to enable the vblank interrupts we shouldn't print debug messages
stating otherwise.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_irq.c')
-rw-r--r-- | drivers/gpu/drm/drm_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index af33df1adc6d..62dee812d28a 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c @@ -103,7 +103,7 @@ static void drm_update_vblank_count(struct drm_device *dev, int crtc) crtc, vblank->last, cur_vblank, diff); } - DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n", + DRM_DEBUG("updating vblank count on crtc %d, missed %d\n", crtc, diff); /* Reinitialize corresponding vblank timestamp if high-precision query |