More fixes to the new macros

This commit is contained in:
Baptiste Daroussin 2015-08-27 05:39:32 +00:00
parent 43eb73d456
commit de84ba19e3

View File

@ -216,25 +216,25 @@ struct drm_device;
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG(fmt, args, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:pid%d:%s]" fmt, DRM_CURRENTPID,\
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG_KMS(fmt, args, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:KMS:pid%d:%s]" fmt, DRM_CURRENTPID,\
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG_MODE(fmt, args, ...) do { \
#define DRM_LOG(fmt, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:pid%d:%s]" fmt, DRM_CURRENTPID, \
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG_DRIVER(fmt, args...) do { \
#define DRM_LOG_KMS(fmt, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:KMS:pid%d:%s]" fmt, DRM_CURRENTPID,\
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG_MODE(fmt, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:pid%d:%s]" fmt, DRM_CURRENTPID, \
__func__ , ##__VA_ARGS__); \
} while (0)
#define DRM_LOG_DRIVER(fmt, ...) do { \
if ((drm_debug & DRM_DEBUGBITS_KMS) != 0) \
printf("[" DRM_NAME "]:KMS:pid%d:%s]" fmt, DRM_CURRENTPID,\
__func__ , ##__VA_ARGS__); \