Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa5b2bab authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Linus Torvalds
Browse files

ipmi: remove deprecated IRQF_DISABLED



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: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d8ec26d7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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) {