summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/timers.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2017-03-14 20:34:14 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-03-22 22:46:40 -0400
commitebe71ea9a2542fcd75dfa75b4995d953a84b7c1a (patch)
treebdf02ed4b520a82e92c82d23fc54cd8d180ae9bd /drivers/gpu/nvgpu/common/linux/timers.c
parent23e92bee4a8f6b66dfd1f5082af2712c0ae0b602 (diff)
gpu: nvgpu: Remove 0x from function name print
Remove an 0x that prepended a function name print (not a function address so the 0x is pretty silly). Bug 1799159 Change-Id: I208192e3cc22699dca13158ab3a33451cee843b0 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1320840 Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> Reviewed-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-by: Konsta Holtta <kholtta@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/timers.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/timers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/timers.c b/drivers/gpu/nvgpu/common/linux/timers.c
index f067107b..5c4f0fb1 100644
--- a/drivers/gpu/nvgpu/common/linux/timers.c
+++ b/drivers/gpu/nvgpu/common/linux/timers.c
@@ -113,7 +113,7 @@ static int __nvgpu_timeout_expired_msg_retry(struct nvgpu_timeout *timeout,
113 vsnprintf(buf, sizeof(buf), fmt, args); 113 vsnprintf(buf, sizeof(buf), fmt, args);
114 114
115 dev_err(dev_from_gk20a(g), 115 dev_err(dev_from_gk20a(g),
116 "No more retries @ 0x%pF %s\n", caller, buf); 116 "No more retries @ %pF %s\n", caller, buf);
117 } 117 }
118 118
119 return -ETIMEDOUT; 119 return -ETIMEDOUT;