|
@@ -1457,38 +1457,38 @@ __setup("disable_cpe_poll", ia64_mca_disable_cpe_polling);
|
|
|
|
|
|
static struct irqaction cmci_irqaction = {
|
|
|
.handler = ia64_mca_cmc_int_handler,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "cmc_hndlr"
|
|
|
};
|
|
|
|
|
|
static struct irqaction cmcp_irqaction = {
|
|
|
.handler = ia64_mca_cmc_int_caller,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "cmc_poll"
|
|
|
};
|
|
|
|
|
|
static struct irqaction mca_rdzv_irqaction = {
|
|
|
.handler = ia64_mca_rendez_int_handler,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "mca_rdzv"
|
|
|
};
|
|
|
|
|
|
static struct irqaction mca_wkup_irqaction = {
|
|
|
.handler = ia64_mca_wakeup_int_handler,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "mca_wkup"
|
|
|
};
|
|
|
|
|
|
#ifdef CONFIG_ACPI
|
|
|
static struct irqaction mca_cpe_irqaction = {
|
|
|
.handler = ia64_mca_cpe_int_handler,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "cpe_hndlr"
|
|
|
};
|
|
|
|
|
|
static struct irqaction mca_cpep_irqaction = {
|
|
|
.handler = ia64_mca_cpe_int_caller,
|
|
|
- .flags = SA_INTERRUPT,
|
|
|
+ .flags = IRQF_DISABLED,
|
|
|
.name = "cpe_poll"
|
|
|
};
|
|
|
#endif /* CONFIG_ACPI */
|