Skip to content

Commit b7b930d

Browse files
author
Andi Shyti
committed
drm/i915: Replace double blank with single blank after comma in gem/ and gt/
Do not use double blanks, ", " in function parameters where it's not required by any alignment purpose. Replase it with a single blank, ", ". Signed-off-by: Andi Shyti <[email protected]> Reviewed-by: Jani Nikula <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent cecab0b commit b7b930d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

drivers/gpu/drm/i915/gem/i915_gem_object_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ struct drm_i915_gem_object {
535535
* I915_CACHE_NONE. The only exception is userptr objects, where we
536536
* instead force I915_CACHE_LLC, but we also don't allow userspace to
537537
* ever change the @cache_level for such objects. Another special case
538-
* is dma-buf, which doesn't rely on @cache_dirty, but there we
538+
* is dma-buf, which doesn't rely on @cache_dirty, but there we
539539
* always do a forced flush when acquiring the pages, if there is a
540540
* chance that the pages can be read directly from main memory with
541541
* the GPU.

drivers/gpu/drm/i915/gt/selftest_migrate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ static int clear(struct intel_migrate *migrate,
336336

337337
if (vaddr[x] != val) {
338338
pr_err("%ps failed, (%u != %u), offset: %zu\n",
339-
fn, vaddr[x], val, x * sizeof(u32));
339+
fn, vaddr[x], val, x * sizeof(u32));
340340
igt_hexdump(vaddr + i * 1024, 4096);
341341
err = -EINVAL;
342342
}

drivers/gpu/drm/i915/gt/uc/intel_uc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static void __confirm_options(struct intel_uc *uc)
9999
}
100100

101101
if (!intel_uc_supports_guc(uc))
102-
gt_info(gt, "Incompatible option enable_guc=%d - %s\n",
102+
gt_info(gt, "Incompatible option enable_guc=%d - %s\n",
103103
i915->params.enable_guc, "GuC is not supported!");
104104

105105
if (i915->params.enable_guc & ENABLE_GUC_SUBMISSION &&

drivers/gpu/drm/i915/selftests/intel_memory_region.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ static int igt_mock_max_segment(void *arg)
517517

518518
if (!IS_ALIGNED(daddr, ps)) {
519519
pr_err("%s: Created an unaligned scatterlist entry, addr=%pa, ps=%u\n",
520-
__func__, &daddr, ps);
520+
__func__, &daddr, ps);
521521
err = -EINVAL;
522522
goto out_close;
523523
}

0 commit comments

Comments
 (0)