diff options
author | yakui_zhao <yakui.zhao@intel.com> | 2009-06-02 02:12:47 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-06-12 00:59:42 -0400 |
commit | f053185948a1bd16329433f5371809765086c1ec (patch) | |
tree | 3027099495a031e627c04a7dcb19e48c77197118 /drivers/gpu | |
parent | 342dc382c451f75ea202a65e6f529bdff6d184cd (diff) |
drm: Replace DRM_DEBUG with DRM_DEBUG_MODE in drm_mode
Replace the DRM_DEBUG with DRM_DEBUG_MODE macro to print the info in drm_mode.
airlied:- fixed up to remove a conflicting #define
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/drm_modes.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index c9b80fdd4630..54f492a488a9 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include "drm.h" | 38 | #include "drm.h" |
39 | #include "drm_crtc.h" | 39 | #include "drm_crtc.h" |
40 | 40 | ||
41 | #define DRM_MODESET_DEBUG "drm_mode" | ||
41 | /** | 42 | /** |
42 | * drm_mode_debug_printmodeline - debug print a mode | 43 | * drm_mode_debug_printmodeline - debug print a mode |
43 | * @dev: DRM device | 44 | * @dev: DRM device |
@@ -50,12 +51,13 @@ | |||
50 | */ | 51 | */ |
51 | void drm_mode_debug_printmodeline(struct drm_display_mode *mode) | 52 | void drm_mode_debug_printmodeline(struct drm_display_mode *mode) |
52 | { | 53 | { |
53 | DRM_DEBUG("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", | 54 | DRM_DEBUG_MODE(DRM_MODESET_DEBUG, |
54 | mode->base.id, mode->name, mode->vrefresh, mode->clock, | 55 | "Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", |
55 | mode->hdisplay, mode->hsync_start, | 56 | mode->base.id, mode->name, mode->vrefresh, mode->clock, |
56 | mode->hsync_end, mode->htotal, | 57 | mode->hdisplay, mode->hsync_start, |
57 | mode->vdisplay, mode->vsync_start, | 58 | mode->hsync_end, mode->htotal, |
58 | mode->vsync_end, mode->vtotal, mode->type, mode->flags); | 59 | mode->vdisplay, mode->vsync_start, |
60 | mode->vsync_end, mode->vtotal, mode->type, mode->flags); | ||
59 | } | 61 | } |
60 | EXPORT_SYMBOL(drm_mode_debug_printmodeline); | 62 | EXPORT_SYMBOL(drm_mode_debug_printmodeline); |
61 | 63 | ||
@@ -401,7 +403,9 @@ void drm_mode_prune_invalid(struct drm_device *dev, | |||
401 | list_del(&mode->head); | 403 | list_del(&mode->head); |
402 | if (verbose) { | 404 | if (verbose) { |
403 | drm_mode_debug_printmodeline(mode); | 405 | drm_mode_debug_printmodeline(mode); |
404 | DRM_DEBUG("Not using %s mode %d\n", mode->name, mode->status); | 406 | DRM_DEBUG_MODE(DRM_MODESET_DEBUG, |
407 | "Not using %s mode %d\n", | ||
408 | mode->name, mode->status); | ||
405 | } | 409 | } |
406 | drm_mode_destroy(dev, mode); | 410 | drm_mode_destroy(dev, mode); |
407 | } | 411 | } |