aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/atmel_spi.c
diff options
context:
space:
mode:
authorMatthias Brugger <matthias.bgg@googlemail.com>2010-10-15 19:39:49 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-10-15 23:56:00 -0400
commitee2007d299ad4020115b193858817e6c57e95db5 (patch)
tree10dffb3efdea8c369851e1a59b48ba5ae7f06906 /drivers/spi/atmel_spi.c
parentef6510babf047d394aa6eb8c93baa0dd6b838c28 (diff)
spi/atmel: typo in debug message
This patches a typo in the debug message. Signed-off-by: Matthias Brugger <mensch0815@gmail.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/atmel_spi.c')
-rw-r--r--drivers/spi/atmel_spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c
index 5c03a5bb168a..154529aacc03 100644
--- a/drivers/spi/atmel_spi.c
+++ b/drivers/spi/atmel_spi.c
@@ -679,7 +679,7 @@ static int atmel_spi_transfer(struct spi_device *spi, struct spi_message *msg)
679 bits = (asd->csr >> 4) & 0xf; 679 bits = (asd->csr >> 4) & 0xf;
680 if (bits != xfer->bits_per_word - 8) { 680 if (bits != xfer->bits_per_word - 8) {
681 dev_dbg(&spi->dev, "you can't yet change " 681 dev_dbg(&spi->dev, "you can't yet change "
682 "bit_per_word in transfers\n"); 682 "bits_per_word in transfers\n");
683 return -ENOPROTOOPT; 683 return -ENOPROTOOPT;
684 } 684 }
685 } 685 }