diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-15 19:52:09 (GMT) |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-10-24 12:09:13 (GMT) |
commit | f742b96e42f886a415633a1fed0db2bb09d2baa3 (patch) | |
tree | 8b6de4288cd9e194b74383a1c69045722350f829 /drivers/mfd/twl6030-irq.c | |
parent | 49dcd070d0718a8b8db344d7b3d5e278362ecd86 (diff) | |
download | linux-f742b96e42f886a415633a1fed0db2bb09d2baa3.tar.xz |
mfd: Remove IRQF_DISABLED
This flag is a NOOP and can be removed now.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/twl6030-irq.c')
-rw-r--r-- | drivers/mfd/twl6030-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl6030-irq.c b/drivers/mfd/twl6030-irq.c index f94a04c..a17b423 100644 --- a/drivers/mfd/twl6030-irq.c +++ b/drivers/mfd/twl6030-irq.c @@ -341,7 +341,7 @@ int twl6030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end) /* install an irq handler to demultiplex the TWL6030 interrupt */ init_completion(&irq_event); - status = request_irq(irq_num, handle_twl6030_pih, IRQF_DISABLED, + status = request_irq(irq_num, handle_twl6030_pih, 0, "TWL6030-PIH", &irq_event); if (status < 0) { pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status); |