gpu: nvgpu: drop 0x in front of timed out symbol

The Linux timer code prints an error message containing the caller when
a timeout happens. The caller is formatted as a function name instead of
a pointer, so don't print 0x in front of it.

Bug 1799159

Change-Id: I4f86d885aba78ca20ba025a91c8c940d3c927d58
Signed-off-by: Konsta Holtta <kholtta@nvidia.com>
Reviewed-on: http://git-master/r/1315749
Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
This commit is contained in:
Konsta Holtta
2017-03-06 15:37:04 +02:00
committed by mobile promotions
parent 3b0e010d14
commit b9991767cc

View File

@@ -88,7 +88,7 @@ static int __nvgpu_timeout_expired_msg_cpu(struct nvgpu_timeout *timeout,
vsnprintf(buf, sizeof(buf), fmt, args);
dev_err(dev_from_gk20a(g),
"Timeout detected @ 0x%pF %s\n", caller, buf);
"Timeout detected @ %pF %s\n", caller, buf);
}
return -ETIMEDOUT;