ipmi: remove deprecated IRQF_DISABLED
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>
Fri, 24 Jan 2014 20:00:50 +0000 (14:00 -0600)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 25 Jan 2014 23:31:58 +0000 (15:31 -0800)
This patch proposes to remove the use of the IRQF_DISABLED flag

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/char/ipmi/ipmi_si_intf.c

index 15e4a6031934f35f09793116daa7e522a7dfa0e1..68c5ef5379aacd73a7423203b3e8a16755c7e9c1 100644 (file)
@@ -1358,7 +1358,7 @@ static int std_irq_setup(struct smi_info *info)
        if (info->si_type == SI_BT) {
                rv = request_irq(info->irq,
                                 si_bt_irq_handler,
-                                IRQF_SHARED | IRQF_DISABLED,
+                                IRQF_SHARED,
                                 DEVICE_NAME,
                                 info);
                if (!rv)
@@ -1368,7 +1368,7 @@ static int std_irq_setup(struct smi_info *info)
        } else
                rv = request_irq(info->irq,
                                 si_irq_handler,
-                                IRQF_SHARED | IRQF_DISABLED,
+                                IRQF_SHARED,
                                 DEVICE_NAME,
                                 info);
        if (rv) {