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

drm/i915/gt: Remove repeated words from comments

Checkpatch spotted a few repeated words in the comment, genuine
mistakes.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210122192913.4518-3-chris@chris-wilson.co.uk
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>

authored by

Chris Wilson and committed by
Daniel Vetter
1ca9b8da 2f8aa3b8

+5 -5
+1 -1
drivers/gpu/drm/i915/gt/intel_execlists_submission.c
··· 3108 3108 static void 3109 3109 logical_ring_default_vfuncs(struct intel_engine_cs *engine) 3110 3110 { 3111 - /* Default vfuncs which can be overriden by each engine. */ 3111 + /* Default vfuncs which can be overridden by each engine. */ 3112 3112 3113 3113 engine->resume = execlists_resume; 3114 3114
+1 -1
drivers/gpu/drm/i915/gt/intel_ggtt.c
··· 92 92 } 93 93 94 94 /* 95 - * Certain Gen5 chipsets require require idling the GPU before 95 + * Certain Gen5 chipsets require idling the GPU before 96 96 * unmapping anything from the GTT when VT-d is enabled. 97 97 */ 98 98 static bool needs_idle_maps(struct drm_i915_private *i915)
+1 -1
drivers/gpu/drm/i915/gt/intel_reset_types.h
··· 32 32 * 33 33 * #I915_WEDGED_ON_INIT - If we fail to initialize the GPU we can no 34 34 * longer use the GPU - similar to #I915_WEDGED bit. The difference in 35 - * in the way we're handling "forced" unwedged (e.g. through debugfs), 35 + * the way we're handling "forced" unwedged (e.g. through debugfs), 36 36 * which is not allowed in case we failed to initialize. 37 37 * 38 38 * #I915_WEDGED_ON_FINI - Similar to #I915_WEDGED_ON_INIT, except we
+1 -1
drivers/gpu/drm/i915/gt/intel_workarounds.c
··· 280 280 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE); 281 281 282 282 /* Use Force Non-Coherent whenever executing a 3D context. This is a 283 - * workaround for for a possible hang in the unlikely event a TLB 283 + * workaround for a possible hang in the unlikely event a TLB 284 284 * invalidation occurs during a PSD flush. 285 285 */ 286 286 /* WaForceEnableNonCoherent:bdw,chv */
+1 -1
drivers/gpu/drm/i915/gt/selftest_execlists.c
··· 2864 2864 err = wait_for_submit(engine, rq, HZ / 2); 2865 2865 i915_request_put(rq); 2866 2866 if (err) { 2867 - pr_err("%s: preemption request was not submited\n", 2867 + pr_err("%s: preemption request was not submitted\n", 2868 2868 engine->name); 2869 2869 err = -ETIME; 2870 2870 }