diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-10-13 21:32:48 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-14 13:23:17 -0400 |
commit | 01b9e0418689951c6ae4ba3b221bc42f49eb6407 (patch) | |
tree | 9b6f382564c7083271d9a270cff65b6cf4f15777 /drivers/spi/spi-atmel.c | |
parent | a536d7654338a06356afd0363e6adf51a02cb08b (diff) |
spi: atmel: Fix checkpatch issue
Fix the following checkpatch warning.
WARNING: quoted string split across lines
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-atmel.c')
-rw-r--r-- | drivers/spi/spi-atmel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c index 6478a9713038..a828222c3e4e 100644 --- a/drivers/spi/spi-atmel.c +++ b/drivers/spi/spi-atmel.c | |||
@@ -1401,8 +1401,7 @@ static int atmel_spi_transfer(struct spi_device *spi, struct spi_message *msg) | |||
1401 | asd = spi->controller_state; | 1401 | asd = spi->controller_state; |
1402 | bits = (asd->csr >> 4) & 0xf; | 1402 | bits = (asd->csr >> 4) & 0xf; |
1403 | if (bits != xfer->bits_per_word - 8) { | 1403 | if (bits != xfer->bits_per_word - 8) { |
1404 | dev_dbg(&spi->dev, "you can't yet change " | 1404 | dev_dbg(&spi->dev, "you can't yet change bits_per_word in transfers\n"); |
1405 | "bits_per_word in transfers\n"); | ||
1406 | return -ENOPROTOOPT; | 1405 | return -ENOPROTOOPT; |
1407 | } | 1406 | } |
1408 | } | 1407 | } |