1
0
Fork 0

MAX7301 GPIO: Do not force SPI speed when using OF Platform

The bit_per_word can be set in the OF Device tree, so no need to force it as with
the platform_data when using OF Platform

Signed-off-by: Patrick Vasseur <patrick.vasseur@c-s.fr>
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
hifive-unleashed-5.1
Christophe Leroy 2013-03-22 13:10:09 +01:00 committed by Linus Walleij
parent 195c65e83c
commit 047b93a359
1 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,8 @@ static int max7301_probe(struct spi_device *spi)
int ret;
/* bits_per_word cannot be configured in platform data */
spi->bits_per_word = 16;
if (spi->dev.platform_data)
spi->bits_per_word = 16;
ret = spi_setup(spi);
if (ret < 0)
return ret;