diff options
author | Chris Wilson <[email protected]> | 2020-03-19 09:19:38 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2020-03-19 16:18:14 +0000 |
commit | 2386b492ded48bb4731ab4321715986bb29a0454 (patch) | |
tree | 1ea8ede9facc33e6f3ece5930c90b16d4bf49cb3 /drivers/gpu/drm/i915/selftests/i915_request.c | |
parent | 394ad36c51ad63270352dfa2c3ee45fa1e5327d0 (diff) |
drm/i915: Prefer '%ps' for printing function symbol names
%pS includes the offset, which is useful for return addresses but noise
when we are pretty printing a known (and expected) function entry point.
Signed-off-by: Chris Wilson <[email protected]>
Reviewed-by: Tvrtko ursulin <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/i915/selftests/i915_request.c')
-rw-r--r-- | drivers/gpu/drm/i915/selftests/i915_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/selftests/i915_request.c b/drivers/gpu/drm/i915/selftests/i915_request.c index f89d9c42f1fa..7ac9616de9d8 100644 --- a/drivers/gpu/drm/i915/selftests/i915_request.c +++ b/drivers/gpu/drm/i915/selftests/i915_request.c @@ -1233,7 +1233,7 @@ static int live_parallel_engines(void *arg) struct igt_live_test t; unsigned int idx; - snprintf(name, sizeof(name), "%pS", fn); + snprintf(name, sizeof(name), "%ps", fn); err = igt_live_test_begin(&t, i915, __func__, name); if (err) break; |