From: Zhao Yakui Date: Wed, 30 Sep 2009 07:21:43 +0000 (+0800) Subject: drm: Delete the DRM_DEBUG_KMS in drm_mode_cursor_ioctl X-Git-Tag: v3.12-rc1~12338^2~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=185974dd596e67e73906790c2a4a4579d75911e6;p=kernel%2Fkernel-generic.git drm: Delete the DRM_DEBUG_KMS in drm_mode_cursor_ioctl We can get the corresponding info by adding the boot option of "drm.debug= 0x07". But On some boxes it will print the following message many times in course of moving mouse. In such case the useful DRM debug info will be flushed. >[drm:drm_mode_cursor_ioctl], Avoid using the DRM_DEBUG_KMS in drm_mode_cursor_ioctl. Signed-off-by: Zhao Yakui Signed-off-by: Dave Airlie --- diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 8e7b0eb..5cae0b3 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -1556,8 +1556,6 @@ int drm_mode_cursor_ioctl(struct drm_device *dev, struct drm_crtc *crtc; int ret = 0; - DRM_DEBUG_KMS("\n"); - if (!req->flags) { DRM_ERROR("no operation set\n"); return -EINVAL;