can: mcp251xfd: add missing newline to printed strings
This patch adds the missing newline to printed strings. Fixes: 55e5b97f003e ("can: mcp25xxfd: add driver for Microchip MCP25xxFD SPI CAN") Link: https://lore.kernel.org/all/20220105154300.1258636-4-mkl@pengutronix.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
99e7cc3b3f
commit
3bd9d8ce6f
@ -2624,7 +2624,7 @@ static int mcp251xfd_register_chip_detect(struct mcp251xfd_priv *priv)
|
||||
if (!mcp251xfd_is_251X(priv) &&
|
||||
priv->devtype_data.model != devtype_data->model) {
|
||||
netdev_info(ndev,
|
||||
"Detected %s, but firmware specifies a %s. Fixing up.",
|
||||
"Detected %s, but firmware specifies a %s. Fixing up.\n",
|
||||
__mcp251xfd_get_model_str(devtype_data->model),
|
||||
mcp251xfd_get_model_str(priv));
|
||||
}
|
||||
@ -2661,7 +2661,7 @@ static int mcp251xfd_register_check_rx_int(struct mcp251xfd_priv *priv)
|
||||
return 0;
|
||||
|
||||
netdev_info(priv->ndev,
|
||||
"RX_INT active after softreset, disabling RX_INT support.");
|
||||
"RX_INT active after softreset, disabling RX_INT support.\n");
|
||||
devm_gpiod_put(&priv->spi->dev, priv->rx_int);
|
||||
priv->rx_int = NULL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user