diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-01-13 08:43:06 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-01-17 13:34:25 -0500 |
commit | ffcaef5ac27b62b480b94036615b3ae4f1b725fe (patch) | |
tree | e975636feba62b0d0ba9d5985a286b2fec579656 | |
parent | fafd67940774733fa97f4b09412aea6981b82e0a (diff) |
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>
-rw-r--r-- | drivers/spi/spi-ppc4xx.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) | |||
428 | /* Real CS - set the initial state. */ | 428 | /* Real CS - set the initial state. */ |
429 | ret = gpio_request(gpio, np->name); | 429 | ret = gpio_request(gpio, np->name); |
430 | if (ret < 0) { | 430 | if (ret < 0) { |
431 | dev_err(dev, "can't request gpio " | 431 | dev_err(dev, |
432 | "#%d: %d\n", i, ret); | 432 | "can't request gpio #%d: %d\n", |
433 | i, ret); | ||
433 | goto free_gpios; | 434 | goto free_gpios; |
434 | } | 435 | } |
435 | 436 | ||