[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8A42379416420646B9BFAC9682273B6D0A257B23@limkexm3.ad.analog.com>
Date: Tue, 14 Apr 2009 11:44:41 +0100
From: "Hennerich, Michael" <Michael.Hennerich@...log.com>
To: <dmitry.torokhov@...il.com>
CC: <linux-input@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
"Robin Getz" <rgetz@...ckfin.uclinux.org>,
"Hennerich, Michael" <Michael.Hennerich@...log.com>
Subject: [PATCH] Input: ad7877.c and ad7879.c: Remove depreciated IRQF_SAMPLE_RANDOM flag
From: Michael Hennerich <michael.hennerich@...log.com>
This patch removes depreciated IRQF_SAMPLE_RANDOM flags
from drivers currently queued in Dmitry's input subsystem tree.
Signed-off-by: Michael Hennerich <michael.hennerich@...log.com>
---
drivers/input/touchscreen/ad7877.c | 4 ++--
drivers/input/touchscreen/ad7879.c | 3 +--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/input/joystick/bfin_rotary.c
b/drivers/input/joystick/bfin_rotary.c
index c318849..7e91bff 100644
--- a/drivers/input/joystick/bfin_rotary.c
+++ b/drivers/input/joystick/bfin_rotary.c
@@ -138,7 +138,7 @@ static int __devinit bfin_rotary_probe(struct
platform_device *pdev)
goto out2;
ret = request_irq(rotary->irq, bfin_rotary_isr,
- IRQF_SAMPLE_RANDOM,
dev_name(&pdev->dev), pdev);
+ 0 , dev_name(&pdev->dev), pdev);
if (ret) {
dev_err(&pdev->dev,
"unable to claim irq %d; error %d\n",
diff --git a/drivers/input/keyboard/adp5588_keys.c
b/drivers/input/keyboard/adp5588_keys.c
index b424ce4..1da7000 100644
--- a/drivers/input/keyboard/adp5588_keys.c
+++ b/drivers/input/keyboard/adp5588_keys.c
@@ -308,7 +308,7 @@ static int __devinit adp5588_probe(struct i2c_client
*client,
}
ret = request_irq(client->irq, adp5588_irq, IRQF_TRIGGER_FALLING
|
- IRQF_SAMPLE_RANDOM | IRQF_DISABLED,
+ IRQF_DISABLED,
client->dev.driver->name, kpad);
if (ret) {
dev_err(&client->dev, "irq %d busy?\n", client->irq);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists