diff options
author | Dave Young <hidave.darkstar@gmail.com> | 2010-01-13 06:38:59 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-01-13 07:16:05 +0100 |
commit | ef14587706521287f1c7ea3326e732f7d86dd096 (patch) | |
tree | 73b257c6d393f073d2ea7358bf99d8864ca67de5 /drivers/gpu | |
parent | drm: fix crtc no modes printf + typo (diff) | |
download | linux-ef14587706521287f1c7ea3326e732f7d86dd096.tar.xz linux-ef14587706521287f1c7ea3326e732f7d86dd096.zip |
drm: change drm set mode messages as DRM_DEBUG
Following drm info repeat 207 times during one hour, it's quite annoying
[ 1266.286747] [drm] TV-19: set mode NTSC 480i 0
Change from DRM_INFO to DRM_DEBUG
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/drm_crtc_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index 1c47ea25337c..7d0f00a935fa 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -702,7 +702,7 @@ bool drm_crtc_helper_set_mode(struct drm_crtc *crtc, if (encoder->crtc != crtc) continue; - DRM_INFO("%s: set mode %s %x\n", drm_get_encoder_name(encoder), + DRM_DEBUG("%s: set mode %s %x\n", drm_get_encoder_name(encoder), mode->name, mode->base.id); encoder_funcs = encoder->helper_private; encoder_funcs->mode_set(encoder, mode, adjusted_mode); |