aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Jungclaus <[email protected]>2023-05-19 21:56:00 +0200
committerMarc Kleine-Budde <[email protected]>2023-06-22 09:38:24 +0200
commit1336ca2d46017d4249a9bd6a9a403d1e86109751 (patch)
tree299513db28337701f3ee7dc3692f7ed4ed665811
parent299a557651d7847c2acb5c43674e2a1c85d38d16 (diff)
can: esd_usb: Don't bother the user with nonessential log message
Replace a netdev_info(), emitting an informational message about the BTR value to be send to the controller, with a debug message by means of netdev_dbg(). Link: https://lore.kernel.org/all/[email protected]/ Suggested-by: Marc Kleine-Budde <[email protected]> Suggested-by: Vincent MAILHOL <[email protected]> Signed-off-by: Frank Jungclaus <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Marc Kleine-Budde <[email protected]>
-rw-r--r--drivers/net/can/usb/esd_usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/usb/esd_usb.c b/drivers/net/can/usb/esd_usb.c
index c10fa578a5b0..1399b832ea3f 100644
--- a/drivers/net/can/usb/esd_usb.c
+++ b/drivers/net/can/usb/esd_usb.c
@@ -955,7 +955,7 @@ static int esd_usb_2_set_bittiming(struct net_device *netdev)
msg->setbaud.rsvd = 0;
msg->setbaud.baud = cpu_to_le32(canbtr);
- netdev_info(netdev, "setting BTR=%#x\n", canbtr);
+ netdev_dbg(netdev, "setting BTR=%#x\n", canbtr);
err = esd_usb_send_msg(priv->usb, msg);