From: Jani Nikula Date: Thu, 31 Jul 2025 11:12:14 +0000 (+0300) Subject: drm/xe: fix stale comment about unordered_wq usage X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7b4106517fe651fdb4dd3a0c341a68e9c63d85dd;p=users%2Fdwmw2%2Flinux.git drm/xe: fix stale comment about unordered_wq usage Display has switched to its own workqueue, no longer using xe->unordered_wq. Reviewed-by: Gustavo Sousa Acked-by: Rodrigo Vivi Link: https://lore.kernel.org/r/20250731111214.1130130-1-jani.nikula@intel.com Signed-off-by: Jani Nikula --- diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 003afb279a5ee..4f795157f7116 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -453,7 +453,7 @@ struct xe_device { /** @ordered_wq: used to serialize compute mode resume */ struct workqueue_struct *ordered_wq; - /** @unordered_wq: used to serialize unordered work, mostly display */ + /** @unordered_wq: used to serialize unordered work */ struct workqueue_struct *unordered_wq; /** @destroy_wq: used to serialize user destroy work, like queue */