aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/input/misc/ad714x-spi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/input/misc/ad714x-spi.c b/drivers/input/misc/ad714x-spi.c
index 4120dd549305..da83ac9bed7e 100644
--- a/drivers/input/misc/ad714x-spi.c
+++ b/drivers/input/misc/ad714x-spi.c
@@ -54,6 +54,12 @@ static int ad714x_spi_write(struct device *dev, unsigned short reg,
54static int __devinit ad714x_spi_probe(struct spi_device *spi) 54static int __devinit ad714x_spi_probe(struct spi_device *spi)
55{ 55{
56 struct ad714x_chip *chip; 56 struct ad714x_chip *chip;
57 int err;
58
59 spi->bits_per_word = 8;
60 err = spi_setup(spi);
61 if (err < 0)
62 return err;
57 63
58 chip = ad714x_probe(&spi->dev, BUS_SPI, spi->irq, 64 chip = ad714x_probe(&spi->dev, BUS_SPI, spi->irq,
59 ad714x_spi_read, ad714x_spi_write); 65 ad714x_spi_read, ad714x_spi_write);