diff options
author | Zhao Yakui <yakui.zhao@intel.com> | 2009-07-20 01:48:04 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-08-04 00:02:31 -0400 |
commit | 8a4c47f346cc7a12d0897c05eb3cc1add26b487f (patch) | |
tree | 3beb08565466a2aa5649debd9dad411388afa53a /include/drm | |
parent | 5c61259e6c7290082108e93815f7f72f27da14f4 (diff) |
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 'include/drm')
-rw-r--r-- | include/drm/drmP.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 45b67d9c39c1..edbdb02a7a3f 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -174,19 +174,19 @@ extern void drm_ut_debug_printk(unsigned int request_level, | |||
174 | __func__, fmt, ##args); \ | 174 | __func__, fmt, ##args); \ |
175 | } while (0) | 175 | } while (0) |
176 | 176 | ||
177 | #define DRM_DEBUG_DRIVER(prefix, fmt, args...) \ | 177 | #define DRM_DEBUG_DRIVER(fmt, args...) \ |
178 | do { \ | 178 | do { \ |
179 | drm_ut_debug_printk(DRM_UT_DRIVER, prefix, \ | 179 | drm_ut_debug_printk(DRM_UT_DRIVER, DRM_NAME, \ |
180 | __func__, fmt, ##args); \ | 180 | __func__, fmt, ##args); \ |
181 | } while (0) | 181 | } while (0) |
182 | #define DRM_DEBUG_KMS(prefix, fmt, args...) \ | 182 | #define DRM_DEBUG_KMS(fmt, args...) \ |
183 | do { \ | 183 | do { \ |
184 | drm_ut_debug_printk(DRM_UT_KMS, prefix, \ | 184 | drm_ut_debug_printk(DRM_UT_KMS, DRM_NAME, \ |
185 | __func__, fmt, ##args); \ | 185 | __func__, fmt, ##args); \ |
186 | } while (0) | 186 | } while (0) |
187 | #define DRM_DEBUG_MODE(prefix, fmt, args...) \ | 187 | #define DRM_DEBUG_MODE(fmt, args...) \ |
188 | do { \ | 188 | do { \ |
189 | drm_ut_debug_printk(DRM_UT_MODE, prefix, \ | 189 | drm_ut_debug_printk(DRM_UT_MODE, DRM_NAME, \ |
190 | __func__, fmt, ##args); \ | 190 | __func__, fmt, ##args); \ |
191 | } while (0) | 191 | } while (0) |
192 | #define DRM_LOG(fmt, args...) \ | 192 | #define DRM_LOG(fmt, args...) \ |
@@ -210,9 +210,9 @@ extern void drm_ut_debug_printk(unsigned int request_level, | |||
210 | NULL, fmt, ##args); \ | 210 | NULL, fmt, ##args); \ |
211 | } while (0) | 211 | } while (0) |
212 | #else | 212 | #else |
213 | #define DRM_DEBUG_DRIVER(prefix, fmt, args...) do { } while (0) | 213 | #define DRM_DEBUG_DRIVER(fmt, args...) do { } while (0) |
214 | #define DRM_DEBUG_KMS(prefix, fmt, args...) do { } while (0) | 214 | #define DRM_DEBUG_KMS(fmt, args...) do { } while (0) |
215 | #define DRM_DEBUG_MODE(prefix, fmt, args...) do { } while (0) | 215 | #define DRM_DEBUG_MODE(fmt, args...) do { } while (0) |
216 | #define DRM_DEBUG(fmt, arg...) do { } while (0) | 216 | #define DRM_DEBUG(fmt, arg...) do { } while (0) |
217 | #define DRM_LOG(fmt, arg...) do { } while (0) | 217 | #define DRM_LOG(fmt, arg...) do { } while (0) |
218 | #define DRM_LOG_KMS(fmt, args...) do { } while (0) | 218 | #define DRM_LOG_KMS(fmt, args...) do { } while (0) |