[PATCH v2 2/2] staging: vc04_services: Use %p to log pointer address
Umang Jain
umang.jain at ideasonboard.com
Tue Nov 28 12:20:07 PST 2023
Solves the following Smatch warnings:
vchiq_release() warn: argument 7 to %lx specifier is cast from pointer
%p will print the hashed pointer to dynamic debug.
In order to print the unmodified pointer address, one can use the
`no_hash_pointers` via kernel parameters.
Signed-off-by: Umang Jain <umang.jain at ideasonboard.com>
---
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_dev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_dev.c b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_dev.c
index 98a60fee3d9a..3e3bf842d20e 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_dev.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_dev.c
@@ -1201,7 +1201,7 @@ static int vchiq_release(struct inode *inode, struct file *file)
int ret = 0;
int i;
- dev_dbg(state->dev, "arm: debug: instance=%lx\n", (unsigned long)instance);
+ dev_dbg(state->dev, "arm: debug: instance=%p\n", instance);
if (!state) {
ret = -EPERM;
--
2.41.0
More information about the linux-arm-kernel
mailing list