From: Chris Wilson Date: Thu, 16 Jan 2020 12:57:49 +0000 (+0000) Subject: drm/i915/gt: Drop rogue space in the middle of GT_TRACE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9c92aa483a3c0b70c5a6d6deeb7c539696c90cec;p=linux.git drm/i915/gt: Drop rogue space in the middle of GT_TRACE Remove the double space that crept into the fmt stringification. Signed-off-by: Chris Wilson Reviewed-by: Mika Kuoppala Link: https://patchwork.freedesktop.org/patch/msgid/20200116125749.2786743-1-chris@chris-wilson.co.uk --- diff --git a/drivers/gpu/drm/i915/gt/intel_gt.h b/drivers/gpu/drm/i915/gt/intel_gt.h index 1dac441cb8f4e..4fac043750aa3 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt.h +++ b/drivers/gpu/drm/i915/gt/intel_gt.h @@ -14,7 +14,7 @@ struct drm_i915_private; #define GT_TRACE(gt, fmt, ...) do { \ const struct intel_gt *gt__ __maybe_unused = (gt); \ - GEM_TRACE("%s " fmt, dev_name(gt__->i915->drm.dev), \ + GEM_TRACE("%s " fmt, dev_name(gt__->i915->drm.dev), \ ##__VA_ARGS__); \ } while (0)