diff options
Diffstat (limited to 'drivers/spi/spi_mpc83xx.c')
-rw-r--r-- | drivers/spi/spi_mpc83xx.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/spi/spi_mpc83xx.c b/drivers/spi/spi_mpc83xx.c index e9798bf7b8c6..9cdbc12278e5 100644 --- a/drivers/spi/spi_mpc83xx.c +++ b/drivers/spi/spi_mpc83xx.c | |||
@@ -232,12 +232,21 @@ int mpc83xx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) | |||
232 | return 0; | 232 | return 0; |
233 | } | 233 | } |
234 | 234 | ||
235 | /* the spi->mode bits understood by this driver: */ | ||
236 | #define MODEBITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH) | ||
237 | |||
235 | static int mpc83xx_spi_setup(struct spi_device *spi) | 238 | static int mpc83xx_spi_setup(struct spi_device *spi) |
236 | { | 239 | { |
237 | struct spi_bitbang *bitbang; | 240 | struct spi_bitbang *bitbang; |
238 | struct mpc83xx_spi *mpc83xx_spi; | 241 | struct mpc83xx_spi *mpc83xx_spi; |
239 | int retval; | 242 | int retval; |
240 | 243 | ||
244 | if (spi->mode & ~MODEBITS) { | ||
245 | dev_dbg(&spi->dev, "setup: unsupported mode bits %x\n", | ||
246 | spi->mode & ~MODEBITS); | ||
247 | return -EINVAL; | ||
248 | } | ||
249 | |||
241 | if (!spi->max_speed_hz) | 250 | if (!spi->max_speed_hz) |
242 | return -EINVAL; | 251 | return -EINVAL; |
243 | 252 | ||