[Intel-xe] [PATCH] drm/xe: Remove unused xe_gt_WARN* macros
Francois Dugast
francois.dugast at intel.com
Wed Jul 26 15:40:10 UTC 2023
Those specific macros are not used, removing them to prevent using
another flavor of WARN().
Signed-off-by: Francois Dugast <francois.dugast at intel.com>
---
drivers/gpu/drm/xe/xe_gt_printk.h | 15 ---------------
1 file changed, 15 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
index 5991bcadd47e..95aa7173fbb2 100644
--- a/drivers/gpu/drm/xe/xe_gt_printk.h
+++ b/drivers/gpu/drm/xe/xe_gt_printk.h
@@ -16,9 +16,6 @@
#define xe_gt_err(_gt, _fmt, ...) \
xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
-#define xe_gt_warn(_gt, _fmt, ...) \
- xe_gt_printk((_gt), warn, _fmt, ##__VA_ARGS__)
-
#define xe_gt_notice(_gt, _fmt, ...) \
xe_gt_printk((_gt), notice, _fmt, ##__VA_ARGS__)
@@ -31,16 +28,4 @@
#define xe_gt_err_ratelimited(_gt, _fmt, ...) \
xe_gt_printk((_gt), err_ratelimited, _fmt, ##__VA_ARGS__)
-#define xe_gt_WARN(_gt, _condition, _fmt, ...) \
- drm_WARN(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
-
-#define xe_gt_WARN_ONCE(_gt, _condition, _fmt, ...) \
- drm_WARN_ONCE(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
-
-#define xe_gt_WARN_ON(_gt, _condition) \
- xe_gt_WARN((_gt), _condition, "%s(%s)", "gt_WARN_ON", __stringify(_condition))
-
-#define xe_gt_WARN_ON_ONCE(_gt, _condition) \
- xe_gt_WARN_ONCE((_gt), _condition, "%s(%s)", "gt_WARN_ON_ONCE", __stringify(_condition))
-
#endif
--
2.34.1
More information about the Intel-xe
mailing list