Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffcaef5a authored by Markus Elfring's avatar Markus Elfring Committed by Mark Brown
Browse files

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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent fafd6794
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;
				}