]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe/pxp: Use the correct define in the set_property_funcs array
authorDaniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Thu, 22 May 2025 22:54:03 +0000 (15:54 -0700)
committerDaniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Mon, 2 Jun 2025 15:28:47 +0000 (08:28 -0700)
The define of the extension type was accidentally used instead of the
one of the property itself. They're both zero, so no functional issue,
but we should use the correct define for code correctness.

Fixes: 41a97c4a1294 ("drm/xe/pxp/uapi: Add API to mark a BO as using PXP")
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
Link: https://lore.kernel.org/r/20250522225401.3953243-6-daniele.ceraolospurio@intel.com
drivers/gpu/drm/xe/xe_bo.c

index 08c8c4b84a178c5a2081c2a740805a9f44a33c67..61d208c852814d850e1b79e39fdc8c18435d82eb 100644 (file)
@@ -2567,7 +2567,7 @@ typedef int (*xe_gem_create_set_property_fn)(struct xe_device *xe,
                                             u64 value);
 
 static const xe_gem_create_set_property_fn gem_create_set_property_funcs[] = {
-       [DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY] = gem_create_set_pxp_type,
+       [DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE] = gem_create_set_pxp_type,
 };
 
 static int gem_create_user_ext_set_property(struct xe_device *xe,