diff options
Diffstat (limited to 'drivers/input/touchscreen/cyttsp4_spi.c')
-rw-r--r-- | drivers/input/touchscreen/cyttsp4_spi.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/input/touchscreen/cyttsp4_spi.c b/drivers/input/touchscreen/cyttsp4_spi.c index a71e1141d638..b19434cebbf6 100644 --- a/drivers/input/touchscreen/cyttsp4_spi.c +++ b/drivers/input/touchscreen/cyttsp4_spi.c | |||
@@ -171,10 +171,7 @@ static int cyttsp4_spi_probe(struct spi_device *spi) | |||
171 | ts = cyttsp4_probe(&cyttsp_spi_bus_ops, &spi->dev, spi->irq, | 171 | ts = cyttsp4_probe(&cyttsp_spi_bus_ops, &spi->dev, spi->irq, |
172 | CY_SPI_DATA_BUF_SIZE); | 172 | CY_SPI_DATA_BUF_SIZE); |
173 | 173 | ||
174 | if (IS_ERR(ts)) | 174 | return PTR_ERR_OR_ZERO(ts); |
175 | return PTR_ERR(ts); | ||
176 | |||
177 | return 0; | ||
178 | } | 175 | } |
179 | 176 | ||
180 | static int cyttsp4_spi_remove(struct spi_device *spi) | 177 | static int cyttsp4_spi_remove(struct spi_device *spi) |