From: Mark Brown Date: Sat, 11 Apr 2009 23:50:17 +0000 (-0700) Subject: Input: wm97xx - don't specify IRQF_SAMPLE_RANDOM X-Git-Tag: upstream/snapshot3+hdmi~17654^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f295232bef43adf648876a0cd950faa99daa5f1;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/touchscreen/wm97xx-core.c b/drivers/input/touchscreen/wm97xx-core.c index cec480b..69af838 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");