mm: remove the filename in the top of file comment in vmalloc.c
[linux-2.6-microblaze.git] / include / drm / drm_print.h
index ca7cee8..1c94174 100644 (file)
@@ -313,6 +313,10 @@ enum drm_debug_category {
         * @DRM_UT_DP: Used in the DP code.
         */
        DRM_UT_DP               = 0x100,
+       /**
+        * @DRM_UT_DRMRES: Used in the drm managed resources code.
+        */
+       DRM_UT_DRMRES           = 0x200,
 };
 
 static inline bool drm_debug_enabled(enum drm_debug_category category)
@@ -442,6 +446,8 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category,
        drm_dev_dbg((drm)->dev, DRM_UT_LEASE, fmt, ##__VA_ARGS__)
 #define drm_dbg_dp(drm, fmt, ...)                                      \
        drm_dev_dbg((drm)->dev, DRM_UT_DP, fmt, ##__VA_ARGS__)
+#define drm_dbg_drmres(drm, fmt, ...)                                  \
+       drm_dev_dbg((drm)->dev, DRM_UT_DRMRES, fmt, ##__VA_ARGS__)
 
 
 /*