diff options
| author | Zhao Yakui <yakui.zhao@intel.com> | 2009-07-20 13:48:04 +0800 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2009-08-04 14:02:31 +1000 | 
| commit | 8a4c47f346cc7a12d0897c05eb3cc1add26b487f (patch) | |
| tree | 3beb08565466a2aa5649debd9dad411388afa53a /drivers/gpu/drm/drm_modes.c | |
| parent | 5c61259e6c7290082108e93815f7f72f27da14f4 (diff) | |
| download | olio-linux-3.10-8a4c47f346cc7a12d0897c05eb3cc1add26b487f.tar.xz olio-linux-3.10-8a4c47f346cc7a12d0897c05eb3cc1add26b487f.zip  | |
drm: Remove the unused prefix in DRM_DEBUG_KMS/DRIVER/MODE
We will have to add a prefix when using the macro defintion of DRM_DEBUG_KMS
/DRM_DEBUG_DRIVER/MODE. It is not convenient. We should use the DRM_NAME
as default prefix.
So remove the prefix in the macro definition of DRM_DEBUG_KMS/DRIVER/MODE.
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
Acked-by: Ian Romanick <ian.d.romanick@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_modes.c')
| -rw-r--r-- | drivers/gpu/drm/drm_modes.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index fd489d76fbb..5eca2d5c5f2 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c @@ -40,7 +40,6 @@  #include "drm.h"  #include "drm_crtc.h" -#define DRM_MODESET_DEBUG	"drm_mode"  /**   * drm_mode_debug_printmodeline - debug print a mode   * @dev: DRM device @@ -53,8 +52,8 @@   */  void drm_mode_debug_printmodeline(struct drm_display_mode *mode)  { -	DRM_DEBUG_MODE(DRM_MODESET_DEBUG, -		"Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", +	DRM_DEBUG_MODE("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d " +			"0x%x 0x%x\n",  		mode->base.id, mode->name, mode->vrefresh, mode->clock,  		mode->hdisplay, mode->hsync_start,  		mode->hsync_end, mode->htotal, @@ -819,8 +818,7 @@ void drm_mode_prune_invalid(struct drm_device *dev,  			list_del(&mode->head);  			if (verbose) {  				drm_mode_debug_printmodeline(mode); -				DRM_DEBUG_MODE(DRM_MODESET_DEBUG, -					"Not using %s mode %d\n", +				DRM_DEBUG_MODE("Not using %s mode %d\n",  					mode->name, mode->status);  			}  			drm_mode_destroy(dev, mode);  |