Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

Adding missing "intel_" prefix in set_mocs_index().

Fixes: b62aa57e3c78 ("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

authored by

Ayaz A Siddiqui and committed by
Matt Roper
53718bff d0a65249

+3 -3
+1 -1
drivers/gpu/drm/i915/gt/intel_gt.c
··· 684 684 goto err_pm; 685 685 } 686 686 687 - set_mocs_index(gt); 687 + intel_set_mocs_index(gt); 688 688 689 689 err = intel_engines_init(gt); 690 690 if (err)
+1 -1
drivers/gpu/drm/i915/gt/intel_mocs.c
··· 616 616 return i915_mmio_reg_offset(GEN12_GLOBAL_MOCS(0)); 617 617 } 618 618 619 - void set_mocs_index(struct intel_gt *gt) 619 + void intel_set_mocs_index(struct intel_gt *gt) 620 620 { 621 621 struct drm_i915_mocs_table table; 622 622
+1 -1
drivers/gpu/drm/i915/gt/intel_mocs.h
··· 36 36 37 37 void intel_mocs_init(struct intel_gt *gt); 38 38 void intel_mocs_init_engine(struct intel_engine_cs *engine); 39 - void set_mocs_index(struct intel_gt *gt); 39 + void intel_set_mocs_index(struct intel_gt *gt); 40 40 41 41 #endif