From: Umesh Nerlige Ramappa Date: Wed, 20 Sep 2023 19:29:22 +0000 (-0400) Subject: drm/xe: Set the correct type for xe_to_user_engine_class X-Git-Tag: Ubuntu-6.8.0-17.17~1697^2~7^2~281 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=61d63a59f68c7ab558b020cc675b9f94ef403c5f;p=mirror_ubuntu-kernels.git drm/xe: Set the correct type for xe_to_user_engine_class User engine class is of type u16. Set the same type for the array used to map xe engines to user engines. Signed-off-by: Umesh Nerlige Ramappa Reviewed-by: Niranjana Vishwanathapura Signed-off-by: Francois Dugast Signed-off-by: Rodrigo Vivi --- diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c index e0c2203e428e..cbccd5c3dbc8 100644 --- a/drivers/gpu/drm/xe/xe_query.c +++ b/drivers/gpu/drm/xe/xe_query.c @@ -19,7 +19,7 @@ #include "xe_macros.h" #include "xe_ttm_vram_mgr.h" -static const enum xe_engine_class xe_to_user_engine_class[] = { +static const u16 xe_to_user_engine_class[] = { [XE_ENGINE_CLASS_RENDER] = DRM_XE_ENGINE_CLASS_RENDER, [XE_ENGINE_CLASS_COPY] = DRM_XE_ENGINE_CLASS_COPY, [XE_ENGINE_CLASS_VIDEO_DECODE] = DRM_XE_ENGINE_CLASS_VIDEO_DECODE,