diff options
Diffstat (limited to 'drivers/spi/orion_spi.c')
-rw-r--r-- | drivers/spi/orion_spi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/spi/orion_spi.c b/drivers/spi/orion_spi.c index b872bfaf4bd2..014becb7d530 100644 --- a/drivers/spi/orion_spi.c +++ b/drivers/spi/orion_spi.c | |||
@@ -364,6 +364,11 @@ static int orion_spi_setup(struct spi_device *spi) | |||
364 | return -EINVAL; | 364 | return -EINVAL; |
365 | } | 365 | } |
366 | 366 | ||
367 | /* Fix ac timing if required. */ | ||
368 | if (orion_spi->spi_info->enable_clock_fix) | ||
369 | orion_spi_setbits(orion_spi, ORION_SPI_IF_CONFIG_REG, | ||
370 | (1 << 14)); | ||
371 | |||
367 | if (spi->bits_per_word == 0) | 372 | if (spi->bits_per_word == 0) |
368 | spi->bits_per_word = 8; | 373 | spi->bits_per_word = 8; |
369 | 374 | ||