summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_guc_ct.c
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2023-06-12 01:24:44 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 19:34:14 +0300
commit90738d86650729cafb6d92191e6568d4b425b20a (patch)
tree67c6c17721560452fbeee16c1f0d53814e728ce4 /drivers/gpu/drm/xe/xe_guc_ct.c
parenta0ea91db616c386a9b5689dbbb7f57073f993368 (diff)
downloadlinux-90738d86650729cafb6d92191e6568d4b425b20a.tar.xz
drm/xe/guc: Fix typo s/enabled/enable/
Fix the log message when it fails to enable CT. Reviewed-by: Matthew Brost <matthew.brost@intel.com> Link: https://lore.kernel.org/r/20230611222447.2837573-2-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_guc_ct.c')
-rw-r--r--drivers/gpu/drm/xe/xe_guc_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 615cc4d4ad69..22bc9ce846db 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -312,7 +312,7 @@ int xe_guc_ct_enable(struct xe_guc_ct *ct)
return 0;
err_out:
- drm_err(&xe->drm, "Failed to enabled CT (%d)\n", err);
+ drm_err(&xe->drm, "Failed to enable CT (%d)\n", err);
return err;
}