Skip to content

Commit

Permalink
Input: ad7877, ad7879 - remove depreciated IRQF_SAMPLE_RANDOM flag
Browse files Browse the repository at this point in the history
This patch removes depreciated IRQF_SAMPLE_RANDOM flags from
ad7877 and ad7879 touchscreen drivers.

Signed-off-by: Michael Hennerich <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
  • Loading branch information
mhennerich authored and dtor committed Apr 15, 2009
1 parent 7f6d5ff commit 0bc69ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/input/touchscreen/ad7877.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,8 +736,8 @@ static int __devinit ad7877_probe(struct spi_device *spi)

/* Request AD7877 /DAV GPIO interrupt */

err = request_irq(spi->irq, ad7877_irq, IRQF_TRIGGER_FALLING |
IRQF_SAMPLE_RANDOM, spi->dev.driver->name, ts);
err = request_irq(spi->irq, ad7877_irq, IRQF_TRIGGER_FALLING,
spi->dev.driver->name, ts);
if (err) {
dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
goto err_free_mem;
Expand Down
3 changes: 1 addition & 2 deletions drivers/input/touchscreen/ad7879.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,7 @@ static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts)
ad7879_setup(ts);

err = request_irq(bus->irq, ad7879_irq,
IRQF_TRIGGER_FALLING | IRQF_SAMPLE_RANDOM,
bus->dev.driver->name, ts);
IRQF_TRIGGER_FALLING, bus->dev.driver->name, ts);

if (err) {
dev_err(&bus->dev, "irq %d busy?\n", bus->irq);
Expand Down

0 comments on commit 0bc69ce

Please sign in to comment.