[PATCH 6/6] staging: axis-fifo: drop debug print of remapped base address

From: Ovidiu Panait

Date: Fri Sep 19 2025 - 15:56:14 EST


The probe function prints the remapped base address with dev_dbg().
This message is not useful and printing kernel addresses is discouraged,
so remove the debug print.

Signed-off-by: Ovidiu Panait <ovidiu.panait.oss@xxxxxxxxx>
---
drivers/staging/axis-fifo/axis-fifo.c | 2 --
1 file changed, 2 deletions(-)

diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
index 881abd61cefd..d15e2bcbcacf 100644
--- a/drivers/staging/axis-fifo/axis-fifo.c
+++ b/drivers/staging/axis-fifo/axis-fifo.c
@@ -594,8 +594,6 @@ static int axis_fifo_probe(struct platform_device *pdev)
if (IS_ERR(fifo->base_addr))
return PTR_ERR(fifo->base_addr);

- dev_dbg(fifo->dt_device, "remapped memory to 0x%p\n", fifo->base_addr);
-
/* ----------------------------
* init IP
* ----------------------------
--
2.50.0