diff options
Diffstat (limited to 'arch/ia64/kernel/mca.c')
-rw-r--r-- | arch/ia64/kernel/mca.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index 584df1772845..eb8e8dc5ac8e 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -1457,38 +1457,38 @@ __setup("disable_cpe_poll", ia64_mca_disable_cpe_polling); | |||
1457 | 1457 | ||
1458 | static struct irqaction cmci_irqaction = { | 1458 | static struct irqaction cmci_irqaction = { |
1459 | .handler = ia64_mca_cmc_int_handler, | 1459 | .handler = ia64_mca_cmc_int_handler, |
1460 | .flags = SA_INTERRUPT, | 1460 | .flags = IRQF_DISABLED, |
1461 | .name = "cmc_hndlr" | 1461 | .name = "cmc_hndlr" |
1462 | }; | 1462 | }; |
1463 | 1463 | ||
1464 | static struct irqaction cmcp_irqaction = { | 1464 | static struct irqaction cmcp_irqaction = { |
1465 | .handler = ia64_mca_cmc_int_caller, | 1465 | .handler = ia64_mca_cmc_int_caller, |
1466 | .flags = SA_INTERRUPT, | 1466 | .flags = IRQF_DISABLED, |
1467 | .name = "cmc_poll" | 1467 | .name = "cmc_poll" |
1468 | }; | 1468 | }; |
1469 | 1469 | ||
1470 | static struct irqaction mca_rdzv_irqaction = { | 1470 | static struct irqaction mca_rdzv_irqaction = { |
1471 | .handler = ia64_mca_rendez_int_handler, | 1471 | .handler = ia64_mca_rendez_int_handler, |
1472 | .flags = SA_INTERRUPT, | 1472 | .flags = IRQF_DISABLED, |
1473 | .name = "mca_rdzv" | 1473 | .name = "mca_rdzv" |
1474 | }; | 1474 | }; |
1475 | 1475 | ||
1476 | static struct irqaction mca_wkup_irqaction = { | 1476 | static struct irqaction mca_wkup_irqaction = { |
1477 | .handler = ia64_mca_wakeup_int_handler, | 1477 | .handler = ia64_mca_wakeup_int_handler, |
1478 | .flags = SA_INTERRUPT, | 1478 | .flags = IRQF_DISABLED, |
1479 | .name = "mca_wkup" | 1479 | .name = "mca_wkup" |
1480 | }; | 1480 | }; |
1481 | 1481 | ||
1482 | #ifdef CONFIG_ACPI | 1482 | #ifdef CONFIG_ACPI |
1483 | static struct irqaction mca_cpe_irqaction = { | 1483 | static struct irqaction mca_cpe_irqaction = { |
1484 | .handler = ia64_mca_cpe_int_handler, | 1484 | .handler = ia64_mca_cpe_int_handler, |
1485 | .flags = SA_INTERRUPT, | 1485 | .flags = IRQF_DISABLED, |
1486 | .name = "cpe_hndlr" | 1486 | .name = "cpe_hndlr" |
1487 | }; | 1487 | }; |
1488 | 1488 | ||
1489 | static struct irqaction mca_cpep_irqaction = { | 1489 | static struct irqaction mca_cpep_irqaction = { |
1490 | .handler = ia64_mca_cpe_int_caller, | 1490 | .handler = ia64_mca_cpe_int_caller, |
1491 | .flags = SA_INTERRUPT, | 1491 | .flags = IRQF_DISABLED, |
1492 | .name = "cpe_poll" | 1492 | .name = "cpe_poll" |
1493 | }; | 1493 | }; |
1494 | #endif /* CONFIG_ACPI */ | 1494 | #endif /* CONFIG_ACPI */ |