[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260210065121.3661-2-zeeshanahmad022019@gmail.com>
Date: Tue, 10 Feb 2026 11:51:20 +0500
From: Zeeshan Ahmad <zeeshanahmad022019@...il.com>
To: Parthiban Veerasooran <parthiban.veerasooran@...rochip.com>,
Christian Gromm <christian.gromm@...rochip.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Dan Carpenter <dan.carpenter@...aro.org>,
Ethan Tidmore <ethantidmore06@...il.com>,
linux-staging@...ts.linux.dev,
linux-kernel@...r.kernel.org,
Zeeshan Ahmad <zeeshanahmad022019@...il.com>
Subject: [PATCH v4 1/2] staging: most: dim2: move extra info messages to dev_dbg
The dim2 driver is currently too talkative in the system logs.
Informational messages such as node addresses and state changes
are useful for developers but provide unnecessary noise for
regular users during normal operation.
Move these non-critical info messages to the debug level using
dev_dbg(). This ensures a quiet log by default while preserving
the information for debugging purposes.
Signed-off-by: Zeeshan Ahmad <zeeshanahmad022019@...il.com>
---
v4:
- Split the work into a 2-patch series as requested by Greg KH.
- Converted non-critical informational messages to dev_dbg() to
ensure the driver is quiet during normal operation.
- Converted remaining error and warning messages to dev_err() and
dev_warn() for proper device-specific logging.
v3:
- Removed "staging-next" and redundant "[PATCH]" from the subject line.
- Shortened commit message lines to stay under 75 characters.
- Added this changelog below the "---" as suggested by Ethan Tidmore.
- Cleaned up temporary submission notes from the permanent commit body.
v2:
- Rebased against the staging-next branch.
- Fixed CC list to include relevant maintainers.
drivers/staging/most/dim2/dim2.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/most/dim2/dim2.c b/drivers/staging/most/dim2/dim2.c
index 80af965356d0..e1b1a606f36a 100644
--- a/drivers/staging/most/dim2/dim2.c
+++ b/drivers/staging/most/dim2/dim2.c
@@ -246,9 +246,9 @@ static void retrieve_netinfo(struct dim2_hdm *dev, struct mbo *mbo)
{
u8 *data = mbo->virt_address;
- pr_info("Node Address: 0x%03x\n", (u16)data[16] << 8 | data[17]);
+ dev_dbg(&dev->dev, "Node Address: 0x%03x\n", (u16)data[16] << 8 | data[17]);
dev->link_state = data[18];
- pr_info("NIState: %d\n", dev->link_state);
+ dev_dbg(&dev->dev, "NIState: %d\n", dev->link_state);
memcpy(dev->mac_addrs, data + 19, 6);
dev->deliver_netinfo++;
wake_up_interruptible(&dev->netinfo_waitq);
@@ -799,8 +799,7 @@ static int dim2_probe(struct platform_device *pdev)
dev_fcnt = pdata->fcnt;
}
- dev_info(&pdev->dev, "sync: num of frames per sub-buffer: %u\n",
- dev_fcnt);
+ dev_dbg(&pdev->dev, "sync: num of frames per sub-buffer: %u\n", dev_fcnt);
hal_ret = dim_startup(dev->io_base, dev->clk_speed, dev_fcnt);
if (hal_ret != DIM_NO_ERROR) {
dev_err(&pdev->dev, "dim_startup failed: %d\n", hal_ret);
--
2.43.0
Powered by blists - more mailing lists