mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
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:
parent
d0a652493a
commit
53718bff8f
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user