mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
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: Michael Opdenacker <michael.opdenacker@free-electrons.com> Signed-off-by: Corey Minyard <cminyard@mvista.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d8ec26d7f8
commit
aa5b2bab9c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user