From: Markus Elfring Date: Fri, 13 Jan 2017 13:43:06 +0000 (+0100) Subject: spi/ppc4xx: Combine substrings for a message in spi_ppc4xx_of_probe() X-Git-Tag: v4.11-rc1~153^2~2^5~1 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=ffcaef5ac27b62b480b94036615b3ae4f1b725fe;p=linux.git spi/ppc4xx: Combine substrings for a message in spi_ppc4xx_of_probe() The script "checkpatch.pl" pointed information out like the following. WARNING: quoted string split across lines Thus fix the affected source code place. Signed-off-by: Markus Elfring Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-ppc4xx.c b/drivers/spi/spi-ppc4xx.c index dd3d0a218d8b..b2df63c66494 100644 --- a/drivers/spi/spi-ppc4xx.c +++ b/drivers/spi/spi-ppc4xx.c @@ -428,8 +428,9 @@ static int spi_ppc4xx_of_probe(struct platform_device *op) /* Real CS - set the initial state. */ ret = gpio_request(gpio, np->name); if (ret < 0) { - dev_err(dev, "can't request gpio " - "#%d: %d\n", i, ret); + dev_err(dev, + "can't request gpio #%d: %d\n", + i, ret); goto free_gpios; }