diff options
Diffstat (limited to 'drivers/spi/pxa2xx_spi.c')
-rw-r--r-- | drivers/spi/pxa2xx_spi.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/spi/pxa2xx_spi.c b/drivers/spi/pxa2xx_spi.c index 9f2c887ffa04..e51311b2da0b 100644 --- a/drivers/spi/pxa2xx_spi.c +++ b/drivers/spi/pxa2xx_spi.c | |||
@@ -1067,6 +1067,9 @@ static int transfer(struct spi_device *spi, struct spi_message *msg) | |||
1067 | return 0; | 1067 | return 0; |
1068 | } | 1068 | } |
1069 | 1069 | ||
1070 | /* the spi->mode bits understood by this driver: */ | ||
1071 | #define MODEBITS (SPI_CPOL | SPI_CPHA) | ||
1072 | |||
1070 | static int setup(struct spi_device *spi) | 1073 | static int setup(struct spi_device *spi) |
1071 | { | 1074 | { |
1072 | struct pxa2xx_spi_chip *chip_info = NULL; | 1075 | struct pxa2xx_spi_chip *chip_info = NULL; |
@@ -1093,6 +1096,12 @@ static int setup(struct spi_device *spi) | |||
1093 | return -EINVAL; | 1096 | return -EINVAL; |
1094 | } | 1097 | } |
1095 | 1098 | ||
1099 | if (spi->mode & ~MODEBITS) { | ||
1100 | dev_dbg(&spi->dev, "setup: unsupported mode bits %x\n", | ||
1101 | spi->mode & ~MODEBITS); | ||
1102 | return -EINVAL; | ||
1103 | } | ||
1104 | |||
1096 | /* Only alloc on first setup */ | 1105 | /* Only alloc on first setup */ |
1097 | chip = spi_get_ctldata(spi); | 1106 | chip = spi_get_ctldata(spi); |
1098 | if (!chip) { | 1107 | if (!chip) { |