Commit 1e6cacdb authored by Alexander Shiyan's avatar Alexander Shiyan Committed by Marc Kleine-Budde

can: mcp251x: Make driver more quiet

This patch moves one diagnostic message used for debugging purposes
to dev_dbg() and removes one useless message.
Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent f3253339
...@@ -601,7 +601,7 @@ static int mcp251x_do_set_bittiming(struct net_device *net) ...@@ -601,7 +601,7 @@ static int mcp251x_do_set_bittiming(struct net_device *net)
(bt->prop_seg - 1)); (bt->prop_seg - 1));
mcp251x_write_bits(spi, CNF3, CNF3_PHSEG2_MASK, mcp251x_write_bits(spi, CNF3, CNF3_PHSEG2_MASK,
(bt->phase_seg2 - 1)); (bt->phase_seg2 - 1));
dev_info(&spi->dev, "CNF: 0x%02x 0x%02x 0x%02x\n", dev_dbg(&spi->dev, "CNF: 0x%02x 0x%02x 0x%02x\n",
mcp251x_read_reg(spi, CNF1), mcp251x_read_reg(spi, CNF1),
mcp251x_read_reg(spi, CNF2), mcp251x_read_reg(spi, CNF2),
mcp251x_read_reg(spi, CNF3)); mcp251x_read_reg(spi, CNF3));
...@@ -1155,8 +1155,6 @@ static int mcp251x_can_probe(struct spi_device *spi) ...@@ -1155,8 +1155,6 @@ static int mcp251x_can_probe(struct spi_device *spi)
devm_can_led_init(net); devm_can_led_init(net);
dev_info(&spi->dev, "probed\n");
return ret; return ret;
error_probe: error_probe:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment