Commit ddca6a31 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Dmitry Torokhov

Input: tsc2005 - driver should depend on GENERIC_HARDIRQS

drivers/input/touchscreen/tsc2005.c: In function ‘tsc2005_probe’:
drivers/input/touchscreen/tsc2005.c:666: error: implicit declaration of function ‘set_irq_wake’

In addition, migrate from set_irq_wake() (marked "do not use" as of commit
a0cd9ca2 ("genirq: Namespace cleanup")) to
irq_set_irq_wake().
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 97eb3f24
...@@ -641,7 +641,7 @@ config TOUCHSCREEN_TOUCHIT213 ...@@ -641,7 +641,7 @@ config TOUCHSCREEN_TOUCHIT213
config TOUCHSCREEN_TSC2005 config TOUCHSCREEN_TSC2005
tristate "TSC2005 based touchscreens" tristate "TSC2005 based touchscreens"
depends on SPI_MASTER depends on SPI_MASTER && GENERIC_HARDIRQS
help help
Say Y here if you have a TSC2005 based touchscreen. Say Y here if you have a TSC2005 based touchscreen.
......
...@@ -663,7 +663,7 @@ static int __devinit tsc2005_probe(struct spi_device *spi) ...@@ -663,7 +663,7 @@ static int __devinit tsc2005_probe(struct spi_device *spi)
goto err_remove_sysfs; goto err_remove_sysfs;
} }
set_irq_wake(spi->irq, 1); irq_set_irq_wake(spi->irq, 1);
return 0; return 0;
err_remove_sysfs: err_remove_sysfs:
......
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