From: Marc Kleine-Budde Date: Thu, 4 Mar 2021 14:20:31 +0000 (+0100) Subject: can: c_can: fix print formating string X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0c1b0138d641316bba1871e127fc1c7ef0e029e3;p=uclinux-h8%2Flinux.git can: c_can: fix print formating string This patch fixes the print format string in the driver, so that it stays in a single line. Link: https://lore.kernel.org/r/20210304154240.2747987-5-mkl@pengutronix.de Signed-off-by: Marc Kleine-Budde --- diff --git a/drivers/net/can/c_can/c_can_pci.c b/drivers/net/can/c_can/c_can_pci.c index 248baa350ef0..8a3628f76594 100644 --- a/drivers/net/can/c_can/c_can_pci.c +++ b/drivers/net/can/c_can/c_can_pci.c @@ -141,8 +141,7 @@ static int c_can_pci_probe(struct pci_dev *pdev, pci_resource_len(pdev, c_can_pci_data->bar)); if (!addr) { dev_err(&pdev->dev, - "device has no PCI memory resources, " - "failing adapter\n"); + "device has no PCI memory resources, failing adapter\n"); ret = -ENOMEM; goto out_release_regions; }