Commit b4816f79 authored by Michael Hennerich's avatar Michael Hennerich Committed by Dmitry Torokhov

Input: ad7879-spi - remove bits_per_word = 16 enforcement

Using regmap this is no longer required.
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent b621e30b
...@@ -34,7 +34,6 @@ static int ad7879_spi_probe(struct spi_device *spi) ...@@ -34,7 +34,6 @@ static int ad7879_spi_probe(struct spi_device *spi)
{ {
struct ad7879 *ts; struct ad7879 *ts;
struct regmap *regmap; struct regmap *regmap;
int err;
/* don't exceed max specified SPI CLK frequency */ /* don't exceed max specified SPI CLK frequency */
if (spi->max_speed_hz > MAX_SPI_FREQ_HZ) { if (spi->max_speed_hz > MAX_SPI_FREQ_HZ) {
...@@ -42,13 +41,6 @@ static int ad7879_spi_probe(struct spi_device *spi) ...@@ -42,13 +41,6 @@ static int ad7879_spi_probe(struct spi_device *spi)
return -EINVAL; return -EINVAL;
} }
spi->bits_per_word = 16;
err = spi_setup(spi);
if (err) {
dev_dbg(&spi->dev, "spi master doesn't support 16 bits/word\n");
return err;
}
regmap = devm_regmap_init_spi(spi, &ad7879_spi_regmap_config); regmap = devm_regmap_init_spi(spi, &ad7879_spi_regmap_config);
if (IS_ERR(regmap)) if (IS_ERR(regmap))
return PTR_ERR(regmap); return PTR_ERR(regmap);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment