diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-07 14:04:16 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-09-07 14:19:11 -0700 |
commit | ec4665c46b11f6e444911ba73dddae6044dec909 (patch) | |
tree | 6eef5f7046753c864d9ec8e58eaa8f32b1b59ece /drivers/input/mouse/pxa930_trkball.c | |
parent | 5d7e7d479856f23eebc272128905a7ecada367fb (diff) | |
download | op-kernel-dev-ec4665c46b11f6e444911ba73dddae6044dec909.zip op-kernel-dev-ec4665c46b11f6e444911ba73dddae6044dec909.tar.gz |
Input: remove IRQF_DISABLED from drivers
This flag is a NOOP and can be removed now.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/pxa930_trkball.c')
-rw-r--r-- | drivers/input/mouse/pxa930_trkball.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/pxa930_trkball.c b/drivers/input/mouse/pxa930_trkball.c index 6c5d84f..ee3b0ca 100644 --- a/drivers/input/mouse/pxa930_trkball.c +++ b/drivers/input/mouse/pxa930_trkball.c @@ -183,7 +183,7 @@ static int __devinit pxa930_trkball_probe(struct platform_device *pdev) /* held the module in reset, will be enabled in open() */ pxa930_trkball_disable(trkball); - error = request_irq(irq, pxa930_trkball_interrupt, IRQF_DISABLED, + error = request_irq(irq, pxa930_trkball_interrupt, 0, pdev->name, trkball); if (error) { dev_err(&pdev->dev, "failed to request irq: %d\n", error); |