aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/twl6030-irq.c
diff options
context:
space:
mode:
authorYong Zhang <yong.zhang0@gmail.com>2011-09-15 15:52:09 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2011-10-24 08:09:13 -0400
commitf742b96e42f886a415633a1fed0db2bb09d2baa3 (patch)
tree8b6de4288cd9e194b74383a1c69045722350f829 /drivers/mfd/twl6030-irq.c
parent49dcd070d0718a8b8db344d7b3d5e278362ecd86 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl6030-irq.c b/drivers/mfd/twl6030-irq.c
index f94a04ca1d37..a17b42360e52 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)
341 /* install an irq handler to demultiplex the TWL6030 interrupt */ 341 /* install an irq handler to demultiplex the TWL6030 interrupt */
342 init_completion(&irq_event); 342 init_completion(&irq_event);
343 343
344 status = request_irq(irq_num, handle_twl6030_pih, IRQF_DISABLED, 344 status = request_irq(irq_num, handle_twl6030_pih, 0,
345 "TWL6030-PIH", &irq_event); 345 "TWL6030-PIH", &irq_event);
346 if (status < 0) { 346 if (status < 0) {
347 pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status); 347 pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status);