diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-04-11 16:50:17 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-04-11 17:09:15 -0700 |
commit | 4f295232bef43adf648876a0cd950faa99daa5f1 (patch) | |
tree | 623621e6216f79ba1a20da8d8d47da37faa3be64 /drivers | |
parent | fd746d540abf8c686f5f868ae62112692e684088 (diff) | |
download | linux-3.10-4f295232bef43adf648876a0cd950faa99daa5f1.tar.gz linux-3.10-4f295232bef43adf648876a0cd950faa99daa5f1.tar.bz2 linux-3.10-4f295232bef43adf648876a0cd950faa99daa5f1.zip |
Input: wm97xx - don't specify IRQF_SAMPLE_RANDOM
The input core will add entropy to the pool so this flag is not
needed.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/touchscreen/wm97xx-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/wm97xx-core.c b/drivers/input/touchscreen/wm97xx-core.c index cec480bffe3..69af8385ab1 100644 --- a/drivers/input/touchscreen/wm97xx-core.c +++ b/drivers/input/touchscreen/wm97xx-core.c @@ -370,8 +370,7 @@ static int wm97xx_init_pen_irq(struct wm97xx *wm) * provided. */ BUG_ON(!wm->mach_ops->irq_enable); - if (request_irq(wm->pen_irq, wm97xx_pen_interrupt, - IRQF_SHARED | IRQF_SAMPLE_RANDOM, + if (request_irq(wm->pen_irq, wm97xx_pen_interrupt, IRQF_SHARED, "wm97xx-pen", wm)) { dev_err(wm->dev, "Failed to register pen down interrupt, polling"); |