aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-atmel.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/spi/spi-atmel.c')
-rw-r--r--drivers/spi/spi-atmel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c
index d8cb7da65efe..380387a47b1d 100644
--- a/drivers/spi/spi-atmel.c
+++ b/drivers/spi/spi-atmel.c
@@ -1408,8 +1408,8 @@ static int atmel_spi_transfer(struct spi_device *spi, struct spi_message *msg)
1408 } 1408 }
1409 1409
1410 /* FIXME implement these protocol options!! */ 1410 /* FIXME implement these protocol options!! */
1411 if (xfer->speed_hz) { 1411 if (xfer->speed_hz < spi->max_speed_hz) {
1412 dev_dbg(&spi->dev, "no protocol options yet\n"); 1412 dev_dbg(&spi->dev, "can't change speed in transfer\n");
1413 return -ENOPROTOOPT; 1413 return -ENOPROTOOPT;
1414 } 1414 }
1415 1415