lkml.org 
[lkml]   [2019]   [Feb]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 11/15] habanalabs: print pointer using %p
Date
Don't cast pointer to u64 to print it. Instead, print the pointer using
%p.

Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
---
Changes in v2:
- Add changelog in the commit message

drivers/misc/habanalabs/goya/goya.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/misc/habanalabs/goya/goya.c b/drivers/misc/habanalabs/goya/goya.c
index 13923f4127af..39824214ce61 100644
--- a/drivers/misc/habanalabs/goya/goya.c
+++ b/drivers/misc/habanalabs/goya/goya.c
@@ -4276,9 +4276,8 @@ static int goya_parse_cb_no_ext_quque(struct hl_device *hdev,
return 0;

dev_err(hdev->dev,
- "Internal CB address 0x%llx + 0x%x is not in SRAM nor in DRAM\n",
- (u64) (uintptr_t) parser->user_cb,
- parser->user_cb_size);
+ "Internal CB address %p + 0x%x is not in SRAM nor in DRAM\n",
+ parser->user_cb, parser->user_cb_size);

return -EFAULT;
}
--
2.17.1
\
 
 \ /
  Last update: 2019-02-28 10:56    [W:1.710 / U:0.044 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site