]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915/gvt: Correct multiple typos in comments
authorShen Lichuan <shenlichuan@vivo.com>
Fri, 13 Sep 2024 02:16:12 +0000 (10:16 +0800)
committerAndi Shyti <andi.shyti@linux.intel.com>
Mon, 16 Sep 2024 09:02:44 +0000 (11:02 +0200)
Fixed some spelling errors, the details are as follows:

-in the code comments:
addess->address
trasitions->transitions
furture->future
unsubmited->unsubmitted

Signed-off-by: Shen Lichuan <shenlichuan@vivo.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240913021612.41948-1-shenlichuan@vivo.com
drivers/gpu/drm/i915/gvt/gtt.c
drivers/gpu/drm/i915/gvt/opregion.c
drivers/gpu/drm/i915/gvt/page_track.c
drivers/gpu/drm/i915/gvt/scheduler.c

index 58cca4906f4135f16901337c3b34fcb0bcbe2123..1bce1493b86ff4b6eba25c2bb83619553f0940a9 100644 (file)
@@ -1190,7 +1190,7 @@ static int split_2MB_gtt_entry(struct intel_vgpu *vgpu,
        ppgtt_set_shadow_entry(spt, se, index);
        return 0;
 err:
-       /* Cancel the existing addess mappings of DMA addr. */
+       /* Cancel the existing address mappings of DMA addr. */
        for_each_present_shadow_entry(sub_spt, &sub_se, sub_index) {
                gvt_vdbg_mm("invalidate 4K entry\n");
                ppgtt_invalidate_pte(sub_spt, &sub_se);
index 908f910420c20c851567eeda53819c2cc48bbe4a..509f9ccae3a9f09a7596904d88a3ac15cf6b1be7 100644 (file)
@@ -439,7 +439,7 @@ int intel_vgpu_emulate_opregion_request(struct intel_vgpu *vgpu, u32 swsci)
                gvt_vgpu_err("requesting SMI service\n");
                return 0;
        }
-       /* ignore non 0->1 trasitions */
+       /* ignore non 0->1 transitions */
        if ((vgpu_cfg_space(vgpu)[INTEL_GVT_PCI_SWSCI]
                                & SWSCI_SCI_TRIGGER) ||
                        !(swsci & SWSCI_SCI_TRIGGER)) {
index 60a65435556dc9e6d7e2cd1812b8ca16dd9ab2f1..20c3cd807488e063bd9c61492eef55fa83a1539b 100644 (file)
@@ -167,7 +167,7 @@ int intel_vgpu_page_track_handler(struct intel_vgpu *vgpu, u64 gpa,
                return -ENXIO;
 
        if (unlikely(vgpu->failsafe)) {
-               /* Remove write protection to prevent furture traps. */
+               /* Remove write protection to prevent future traps. */
                intel_gvt_page_track_remove(vgpu, gpa >> PAGE_SHIFT);
        } else {
                ret = page_track->handler(page_track, gpa, data, bytes);
index a5c8005ec484c32b3225a7ae6a18d94f0524fb14..23f2cc397ec96eae4f0d37341d6e8ea38884545e 100644 (file)
@@ -1052,7 +1052,7 @@ void intel_vgpu_clean_workloads(struct intel_vgpu *vgpu,
        struct intel_vgpu_workload *pos, *n;
        intel_engine_mask_t tmp;
 
-       /* free the unsubmited workloads in the queues. */
+       /* free the unsubmitted workloads in the queues. */
        for_each_engine_masked(engine, vgpu->gvt->gt, engine_mask, tmp) {
                list_for_each_entry_safe(pos, n,
                        &s->workload_q_head[engine->id], list) {