can: mcp251xfd: add missing newline to printed strings
[ Upstream commit 3bd9d8ce6f8c5c43ee2f1106021db0f98882cc75 ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
f5b7e80e25
commit
8609525ee0
@ -2625,7 +2625,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));
|
||||
}
|
||||
@ -2662,7 +2662,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