drm/i915/gt: Add "intel_" as prefix in set_mocs_index()

Adding missing "intel_" prefix in set_mocs_index().

Fixes: b62aa57e3c ("drm/i915/gt: Add support of mocs propagation")
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Ayaz A Siddiqui <ayaz.siddiqui@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210916062736.1733587-1-ayaz.siddiqui@intel.com
This commit is contained in:
Ayaz A Siddiqui 2021-09-16 11:57:36 +05:30 committed by Matt Roper
parent d0a652493a
commit 53718bff8f
3 changed files with 3 additions and 3 deletions

View File

@ -684,7 +684,7 @@ int intel_gt_init(struct intel_gt *gt)
goto err_pm;
}
set_mocs_index(gt);
intel_set_mocs_index(gt);
err = intel_engines_init(gt);
if (err)

View File

@ -616,7 +616,7 @@ static u32 global_mocs_offset(void)
return i915_mmio_reg_offset(GEN12_GLOBAL_MOCS(0));
}
void set_mocs_index(struct intel_gt *gt)
void intel_set_mocs_index(struct intel_gt *gt)
{
struct drm_i915_mocs_table table;

View File

@ -36,6 +36,6 @@ struct intel_gt;
void intel_mocs_init(struct intel_gt *gt);
void intel_mocs_init_engine(struct intel_engine_cs *engine);
void set_mocs_index(struct intel_gt *gt);
void intel_set_mocs_index(struct intel_gt *gt);
#endif