aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingoo Han <[email protected]>2013-10-14 10:32:48 +0900
committerMark Brown <[email protected]>2013-10-14 18:23:17 +0100
commit01b9e0418689951c6ae4ba3b221bc42f49eb6407 (patch)
tree9b6f382564c7083271d9a270cff65b6cf4f15777
parenta536d7654338a06356afd0363e6adf51a02cb08b (diff)
spi: atmel: Fix checkpatch issue
Fix the following checkpatch warning. WARNING: quoted string split across lines Signed-off-by: Jingoo Han <[email protected]> Acked-by: Nicolas Ferre <[email protected]> Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--drivers/spi/spi-atmel.c3
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)
asd = spi->controller_state;
bits = (asd->csr >> 4) & 0xf;
if (bits != xfer->bits_per_word - 8) {
- dev_dbg(&spi->dev, "you can't yet change "
- "bits_per_word in transfers\n");
+ dev_dbg(&spi->dev, "you can't yet change bits_per_word in transfers\n");
return -ENOPROTOOPT;
}
}