diff options
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/ads7846.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 90f792c17ab3..ba9d38c3f412 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
@@ -1150,9 +1150,15 @@ static int __devinit ads7846_probe(struct spi_device *spi) | |||
1150 | 1150 | ||
1151 | if (request_irq(spi->irq, ads7846_irq, IRQF_TRIGGER_FALLING, | 1151 | if (request_irq(spi->irq, ads7846_irq, IRQF_TRIGGER_FALLING, |
1152 | spi->dev.driver->name, ts)) { | 1152 | spi->dev.driver->name, ts)) { |
1153 | dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq); | 1153 | dev_info(&spi->dev, |
1154 | err = -EBUSY; | 1154 | "trying pin change workaround on irq %d\n", spi->irq); |
1155 | goto err_free_gpio; | 1155 | err = request_irq(spi->irq, ads7846_irq, |
1156 | IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, | ||
1157 | spi->dev.driver->name, ts); | ||
1158 | if (err) { | ||
1159 | dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq); | ||
1160 | goto err_free_gpio; | ||
1161 | } | ||
1156 | } | 1162 | } |
1157 | 1163 | ||
1158 | err = ads784x_hwmon_register(spi, ts); | 1164 | err = ads784x_hwmon_register(spi, ts); |