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 <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200116125749.2786743-1-chris@chris-wilson.co.uk
This commit is contained in:
parent
f3c0efc9fe
commit
9c92aa483a
|
@ -14,7 +14,7 @@ struct drm_i915_private;
|
||||||
|
|
||||||
#define GT_TRACE(gt, fmt, ...) do { \
|
#define GT_TRACE(gt, fmt, ...) do { \
|
||||||
const struct intel_gt *gt__ __maybe_unused = (gt); \
|
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__); \
|
##__VA_ARGS__); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue