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>
This commit is contained in:
Alex Waterman
2017-03-14 17:34:14 -07:00
committed by mobile promotions
parent 23e92bee4a
commit ebe71ea9a2

View File

@@ -113,7 +113,7 @@ static int __nvgpu_timeout_expired_msg_retry(struct nvgpu_timeout *timeout,
vsnprintf(buf, sizeof(buf), fmt, args); vsnprintf(buf, sizeof(buf), fmt, args);
dev_err(dev_from_gk20a(g), dev_err(dev_from_gk20a(g),
"No more retries @ 0x%pF %s\n", caller, buf); "No more retries @ %pF %s\n", caller, buf);
} }
return -ETIMEDOUT; return -ETIMEDOUT;