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

spi/mpc52xx: Combine substrings for two messages

The script "checkpatch.pl" pointed information out like the following.

WARNING: quoted string split across lines

Thus fix the affected source code places.

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
9c4f0440 8b6c8955

+3 -4
+3 -4
drivers/spi/spi-mpc52xx.c
··· 449 449 gpio_cs = of_get_gpio(op->dev.of_node, i); 450 450 if (gpio_cs < 0) { 451 451 dev_err(&op->dev, 452 - "could not parse the gpio field " 453 - "in oftree\n"); 452 + "could not parse the gpio field in oftree\n"); 454 453 rc = -ENODEV; 455 454 goto err_gpio; 456 455 } ··· 457 458 rc = gpio_request(gpio_cs, dev_name(&op->dev)); 458 459 if (rc) { 459 460 dev_err(&op->dev, 460 - "can't request spi cs gpio #%d " 461 - "on gpio line %d\n", i, gpio_cs); 461 + "can't request spi cs gpio #%d on gpio line %d\n", 462 + i, gpio_cs); 462 463 goto err_gpio; 463 464 } 464 465