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>
This commit is contained in:
Lucas De Marchi
2023-06-11 15:24:44 -07:00
committed by Rodrigo Vivi
parent a0ea91db61
commit 90738d8665
+1 -1
View File
@@ -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;
}