Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <elfring@users.sourceforge.net>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Markus Elfring and committed by
Mark Brown
ffcaef5a fafd6794

+3 -2
+3 -2
drivers/spi/spi-ppc4xx.c
··· 428 428 /* Real CS - set the initial state. */ 429 429 ret = gpio_request(gpio, np->name); 430 430 if (ret < 0) { 431 - dev_err(dev, "can't request gpio " 432 - "#%d: %d\n", i, ret); 431 + dev_err(dev, 432 + "can't request gpio #%d: %d\n", 433 + i, ret); 433 434 goto free_gpios; 434 435 } 435 436