summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_step.c
diff options
context:
space:
mode:
authorMatt Roper <matthew.d.roper@intel.com>2023-06-14 23:52:01 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 19:35:07 +0300
commit98b6d092341128f753cff64b1bceda69c718b6af (patch)
treef633a5359b1a680618673bcc90fd3e1931f0ca07 /drivers/gpu/drm/xe/xe_step.c
parent54c5b74a06939bec61aa59421aa1073c0b666c2c (diff)
downloadlinux-98b6d092341128f753cff64b1bceda69c718b6af.tar.xz
drm/xe: Print proper revid value for unknown media revision
If the GMD_ID register reports a higher media revision ID than we're expecting, print the media revid, not the graphics revid, in the debug message. Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Link: https://lore.kernel.org/r/20230614205202.3376752-4-matthew.d.roper@intel.com Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_step.c')
-rw-r--r--drivers/gpu/drm/xe/xe_step.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_step.c b/drivers/gpu/drm/xe/xe_step.c
index 1baf79ba02ad..371cac951e0f 100644
--- a/drivers/gpu/drm/xe/xe_step.c
+++ b/drivers/gpu/drm/xe/xe_step.c
@@ -235,7 +235,7 @@ struct xe_step_info xe_step_gmdid_get(struct xe_device *xe,
if (step.media >= STEP_FUTURE) {
step.media = STEP_FUTURE;
drm_dbg(&xe->drm, "Media GMD_ID revid value %d treated as future stepping\n",
- graphics_gmdid_revid);
+ media_gmdid_revid);
}
return step;