浏览代码

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>
Ville Syrjälä 11 年之前
父节点
当前提交
96a9fdd778
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/gpu/drm/drm_irq.c

+ 1 - 1
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);
 			  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);
 		  crtc, diff);
 
 
 	/* Reinitialize corresponding vblank timestamp if high-precision query
 	/* Reinitialize corresponding vblank timestamp if high-precision query