projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abe85a9
)
habanalabs: print pointer with correct modifier
author
Oded Gabbay
<ogabbay@kernel.org>
Sun, 19 Jun 2022 09:37:01 +0000
(12:37 +0300)
committer
Oded Gabbay
<ogabbay@kernel.org>
Tue, 12 Jul 2022 06:09:24 +0000
(09:09 +0300)
Use %p instead of %llx for printing pointers.
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/command_submission.c
patch
|
blob
|
history
diff --git
a/drivers/misc/habanalabs/common/command_submission.c
b/drivers/misc/habanalabs/common/command_submission.c
index e5549a9da42e24ca0dae0b5d9aad7f2d37cc7851..5130a63e49cf07de386ce56fcaa516a79d8cf39e 100644
(file)
--- a/
drivers/misc/habanalabs/common/command_submission.c
+++ b/
drivers/misc/habanalabs/common/command_submission.c
@@
-3035,8
+3035,8
@@
start_over:
*pend = requested_offset_record;
- dev_dbg(buf->mmg->dev, "Found available node in TS kernel CB
(0x%llx)
\n",
-
(u64)(uintptr_t)
requested_offset_record);
+ dev_dbg(buf->mmg->dev, "Found available node in TS kernel CB
%p
\n",
+ requested_offset_record);
return 0;
}