diff options
author | Andi Shyti <andi.shyti@linux.intel.com> | 2024-08-07 16:05:15 +0300 |
---|---|---|
committer | Andi Shyti <andi.shyti@linux.intel.com> | 2024-08-08 13:40:41 +0300 |
commit | b7b930d104c38a545d862896759863d649be8252 (patch) | |
tree | 4480338dae9fd8122cb73a4d860a6365adf84c8e /drivers/gpu/drm/i915/gem | |
parent | cecab0bb737fb74813733f2472761fc3a93857b1 (diff) | |
download | linux-b7b930d104c38a545d862896759863d649be8252.tar.xz |
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 <andi.shyti@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240807130516.491053-2-andi.shyti@linux.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/gem')
-rw-r--r-- | drivers/gpu/drm/i915/gem/i915_gem_object_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_types.h b/drivers/gpu/drm/i915/gem/i915_gem_object_types.h index 1495b6074492..68413c05c812 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_object_types.h +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_types.h @@ -535,7 +535,7 @@ struct drm_i915_gem_object { * I915_CACHE_NONE. The only exception is userptr objects, where we * instead force I915_CACHE_LLC, but we also don't allow userspace to * ever change the @cache_level for such objects. Another special case - * is dma-buf, which doesn't rely on @cache_dirty, but there we + * is dma-buf, which doesn't rely on @cache_dirty, but there we * always do a forced flush when acquiring the pages, if there is a * chance that the pages can be read directly from main memory with * the GPU. |