diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 3e04e80e0815..615218d775b1 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -82,16 +82,6 @@ enum xe_wedged_mode { #define XE_MAX_ASID (BIT(20)) -#define IS_PLATFORM_STEP(_xe, _platform, min_step, max_step) \ - ((_xe)->info.platform == (_platform) && \ - (_xe)->info.step.graphics >= (min_step) && \ - (_xe)->info.step.graphics < (max_step)) -#define IS_SUBPLATFORM_STEP(_xe, _platform, sub, min_step, max_step) \ - ((_xe)->info.platform == (_platform) && \ - (_xe)->info.subplatform == (sub) && \ - (_xe)->info.step.graphics >= (min_step) && \ - (_xe)->info.step.graphics < (max_step)) - /** * struct xe_device - Top level struct of Xe device */