drm: Remove the macro defintion of DRM_DEBUG_MODE
Two macro definitions of DRM_DEBUG_KMS/MODE can be used to add the debug info related with KMS. It is confusing. So remove the macro definition of DRM_DEBUG_MODE. Instead it can be replaced by the DRM_DEBUG_KMS. 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>
This commit is contained in:
@@ -52,7 +52,7 @@
|
|||||||
*/
|
*/
|
||||||
void drm_mode_debug_printmodeline(struct drm_display_mode *mode)
|
void drm_mode_debug_printmodeline(struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
DRM_DEBUG_MODE("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d "
|
DRM_DEBUG_KMS("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d "
|
||||||
"0x%x 0x%x\n",
|
"0x%x 0x%x\n",
|
||||||
mode->base.id, mode->name, mode->vrefresh, mode->clock,
|
mode->base.id, mode->name, mode->vrefresh, mode->clock,
|
||||||
mode->hdisplay, mode->hsync_start,
|
mode->hdisplay, mode->hsync_start,
|
||||||
@@ -818,7 +818,7 @@ 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_MODE("Not using %s mode %d\n",
|
DRM_DEBUG_KMS("Not using %s mode %d\n",
|
||||||
mode->name, mode->status);
|
mode->name, mode->status);
|
||||||
}
|
}
|
||||||
drm_mode_destroy(dev, mode);
|
drm_mode_destroy(dev, mode);
|
||||||
|
@@ -88,7 +88,6 @@ struct drm_device;
|
|||||||
#define DRM_UT_CORE 0x01
|
#define DRM_UT_CORE 0x01
|
||||||
#define DRM_UT_DRIVER 0x02
|
#define DRM_UT_DRIVER 0x02
|
||||||
#define DRM_UT_KMS 0x04
|
#define DRM_UT_KMS 0x04
|
||||||
#define DRM_UT_MODE 0x08
|
|
||||||
|
|
||||||
extern void drm_ut_debug_printk(unsigned int request_level,
|
extern void drm_ut_debug_printk(unsigned int request_level,
|
||||||
const char *prefix,
|
const char *prefix,
|
||||||
@@ -184,11 +183,6 @@ extern void drm_ut_debug_printk(unsigned int request_level,
|
|||||||
drm_ut_debug_printk(DRM_UT_KMS, DRM_NAME, \
|
drm_ut_debug_printk(DRM_UT_KMS, DRM_NAME, \
|
||||||
__func__, fmt, ##args); \
|
__func__, fmt, ##args); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#define DRM_DEBUG_MODE(fmt, args...) \
|
|
||||||
do { \
|
|
||||||
drm_ut_debug_printk(DRM_UT_MODE, DRM_NAME, \
|
|
||||||
__func__, fmt, ##args); \
|
|
||||||
} while (0)
|
|
||||||
#define DRM_LOG(fmt, args...) \
|
#define DRM_LOG(fmt, args...) \
|
||||||
do { \
|
do { \
|
||||||
drm_ut_debug_printk(DRM_UT_CORE, NULL, \
|
drm_ut_debug_printk(DRM_UT_CORE, NULL, \
|
||||||
@@ -212,7 +206,6 @@ extern void drm_ut_debug_printk(unsigned int request_level,
|
|||||||
#else
|
#else
|
||||||
#define DRM_DEBUG_DRIVER(fmt, args...) do { } while (0)
|
#define DRM_DEBUG_DRIVER(fmt, args...) do { } while (0)
|
||||||
#define DRM_DEBUG_KMS(fmt, args...) do { } while (0)
|
#define DRM_DEBUG_KMS(fmt, args...) do { } while (0)
|
||||||
#define DRM_DEBUG_MODE(fmt, args...) do { } while (0)
|
|
||||||
#define DRM_DEBUG(fmt, arg...) do { } while (0)
|
#define DRM_DEBUG(fmt, arg...) do { } while (0)
|
||||||
#define DRM_LOG(fmt, arg...) do { } while (0)
|
#define DRM_LOG(fmt, arg...) do { } while (0)
|
||||||
#define DRM_LOG_KMS(fmt, args...) do { } while (0)
|
#define DRM_LOG_KMS(fmt, args...) do { } while (0)
|
||||||
|
Reference in New Issue
Block a user