diff options
author | Dorcas AnonoLitunya <anonolitunya@gmail.com> | 2023-10-27 20:47:45 +0300 |
---|---|---|
committer | Andi Shyti <andi.shyti@kernel.org> | 2023-11-03 01:35:24 +0100 |
commit | 5fbae6874c92eec51cdcdcb68a4bafb535c066bf (patch) | |
tree | 6cd8951396d0a64340e69cf6f88ee47f9b9bafa3 /drivers/gpu/drm/i915/gt/intel_engine_cs.c | |
parent | d581841076bc5de3c0ae72fd6bd50c59ce9f1638 (diff) | |
download | linux-5fbae6874c92eec51cdcdcb68a4bafb535c066bf.tar.gz linux-5fbae6874c92eec51cdcdcb68a4bafb535c066bf.tar.bz2 linux-5fbae6874c92eec51cdcdcb68a4bafb535c066bf.zip |
drm/i915/gt: Remove prohibited space after opening parenthesis
Removes space after opening parenthesis.
Fixes the checkpatch.pl error:
ERROR: space prohibited after that opening parenthesis '('
Signed-off-by: Dorcas AnonoLitunya <anonolitunya@gmail.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/20231027174745.4058-1-anonolitunya@gmail.com
Diffstat (limited to 'drivers/gpu/drm/i915/gt/intel_engine_cs.c')
-rw-r--r-- | drivers/gpu/drm/i915/gt/intel_engine_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c index 4a11219e560e..40687806d22a 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -47,7 +47,7 @@ #define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE) #define GEN11_LR_CONTEXT_RENDER_SIZE (14 * PAGE_SIZE) -#define GEN8_LR_CONTEXT_OTHER_SIZE ( 2 * PAGE_SIZE) +#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE) #define MAX_MMIO_BASES 3 struct engine_info { |