diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2011-09-15 21:56:08 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-10-24 14:09:13 +0200 |
commit | a980bf73ba8ff76e6fab0644513c1127d852d0a8 (patch) | |
tree | 12821e3b7e34bfa87f578dd5822eda489d25cd7b /drivers/mfd | |
parent | f742b96e42f886a415633a1fed0db2bb09d2baa3 (diff) | |
download | linux-3.10-a980bf73ba8ff76e6fab0644513c1127d852d0a8.tar.gz linux-3.10-a980bf73ba8ff76e6fab0644513c1127d852d0a8.tar.bz2 linux-3.10-a980bf73ba8ff76e6fab0644513c1127d852d0a8.zip |
mfd: Remove IRQF_DISABLED flag from twl4030-irq
IRQF_DISABLED is a NOOP and is scheduled for removal.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/twl4030-irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c index ff16e9c3ba3..f062c8cc6c3 100644 --- a/drivers/mfd/twl4030-irq.c +++ b/drivers/mfd/twl4030-irq.c @@ -733,8 +733,8 @@ int twl4030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end) } /* install an irq handler to demultiplex the TWL4030 interrupt */ - status = request_threaded_irq(irq_num, NULL, handle_twl4030_pih, - IRQF_DISABLED, "TWL4030-PIH", NULL); + status = request_threaded_irq(irq_num, NULL, handle_twl4030_pih, 0, + "TWL4030-PIH", NULL); if (status < 0) { pr_err("twl4030: could not claim irq%d: %d\n", irq_num, status); goto fail_rqirq; |