diff options
author | Prathu Baronia <[email protected]> | 2023-06-16 20:56:00 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2023-06-17 16:11:01 +0200 |
commit | f99bbb4412ceffba7e85b9a9227de44c214c68ca (patch) | |
tree | 34dcaff20965cee6c728086abb5abdbfdd5e2822 | |
parent | 01da3efafe060ba685fcd08f8db665e5a9f1f9fc (diff) |
axis-fifo: remove the unnecessary dev_info()
This dev_info() statement is not needed since drivers need to be quiet
under normal operation and its not a good idea to print addresses in
kernel log.
Signed-off-by: Prathu Baronia <[email protected]>
Message-ID: <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/axis-fifo/axis-fifo.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c index 7a21f2423204..98db47cb4fa4 100644 --- a/drivers/staging/axis-fifo/axis-fifo.c +++ b/drivers/staging/axis-fifo/axis-fifo.c @@ -906,9 +906,6 @@ static int axis_fifo_probe(struct platform_device *pdev) if (rc < 0) goto err_initial; - dev_info(fifo->dt_device, "axis-fifo created at %pa mapped to 0x%pa, irq=%i\n", - &r_mem->start, &fifo->base_addr, fifo->irq); - return 0; err_initial: |