diff options
author | Jan Kundrát <jan.kundrat@cesnet.cz> | 2018-02-15 09:15:07 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-02-15 10:19:38 -0500 |
commit | 64aa3bd32c2679ed51401cb32fe6b387a1e6b51b (patch) | |
tree | db05c76288df739c28cf36a7daf44cd741b6e72a | |
parent | 544248623b95eefbe4bea5fa5c68ab0da495eaae (diff) |
spi: orion: Make the error message greppable
Commit 544248623b95 introduced a new user-visible string which was
however split into two chunks. Thanks to Mark Brown for noticing.
Signed-off-by: Jan Kundrát <jan.kundrat@cesnet.cz>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-orion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c index b341235d2947..ca52300baeb1 100644 --- a/drivers/spi/spi-orion.c +++ b/drivers/spi/spi-orion.c | |||
@@ -762,8 +762,8 @@ static int orion_spi_probe(struct platform_device *pdev) | |||
762 | } | 762 | } |
763 | if (spi->unused_hw_gpio == -1) { | 763 | if (spi->unused_hw_gpio == -1) { |
764 | dev_info(&pdev->dev, | 764 | dev_info(&pdev->dev, |
765 | "Selected unused HW CS#%d " | 765 | "Selected unused HW CS#%d for any GPIO CSes\n", |
766 | "for any GPIO CSes\n", i); | 766 | i); |
767 | spi->unused_hw_gpio = i; | 767 | spi->unused_hw_gpio = i; |
768 | } | 768 | } |
769 | } | 769 | } |