Commit f0531859 authored by yakui_zhao's avatar yakui_zhao Committed by Dave Airlie

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: default avatarZhao Yakui <yakui.zhao@intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 342dc382
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include "drm.h" #include "drm.h"
#include "drm_crtc.h" #include "drm_crtc.h"
#define DRM_MODESET_DEBUG "drm_mode"
/** /**
* drm_mode_debug_printmodeline - debug print a mode * drm_mode_debug_printmodeline - debug print a mode
* @dev: DRM device * @dev: DRM device
...@@ -50,12 +51,13 @@ ...@@ -50,12 +51,13 @@
*/ */
void drm_mode_debug_printmodeline(struct drm_display_mode *mode) void drm_mode_debug_printmodeline(struct drm_display_mode *mode)
{ {
DRM_DEBUG("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", DRM_DEBUG_MODE(DRM_MODESET_DEBUG,
mode->base.id, mode->name, mode->vrefresh, mode->clock, "Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n",
mode->hdisplay, mode->hsync_start, mode->base.id, mode->name, mode->vrefresh, mode->clock,
mode->hsync_end, mode->htotal, mode->hdisplay, mode->hsync_start,
mode->vdisplay, mode->vsync_start, mode->hsync_end, mode->htotal,
mode->vsync_end, mode->vtotal, mode->type, mode->flags); mode->vdisplay, mode->vsync_start,
mode->vsync_end, mode->vtotal, mode->type, mode->flags);
} }
EXPORT_SYMBOL(drm_mode_debug_printmodeline); EXPORT_SYMBOL(drm_mode_debug_printmodeline);
...@@ -401,7 +403,9 @@ void drm_mode_prune_invalid(struct drm_device *dev, ...@@ -401,7 +403,9 @@ void drm_mode_prune_invalid(struct drm_device *dev,
list_del(&mode->head); list_del(&mode->head);
if (verbose) { if (verbose) {
drm_mode_debug_printmodeline(mode); drm_mode_debug_printmodeline(mode);
DRM_DEBUG("Not using %s mode %d\n", mode->name, mode->status); DRM_DEBUG_MODE(DRM_MODESET_DEBUG,
"Not using %s mode %d\n",
mode->name, mode->status);
} }
drm_mode_destroy(dev, mode); drm_mode_destroy(dev, mode);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment